mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import { PORT } from './dev';
|
|
import { testRunnerBuild as testRunnerProd } from './test-runner-build';
|
|
|
|
export const testRunnerDev: typeof testRunnerProd = {
|
|
...testRunnerProd,
|
|
port: PORT,
|
|
description: 'Run the test runner against a sandbox in dev mode',
|
|
dependsOn: ['dev'],
|
|
};
|