mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { PORT } from './dev';
|
|
import { e2eTestsBuild } from './e2e-tests-build';
|
|
|
|
export const e2eTestsDev: typeof e2eTestsBuild = {
|
|
...e2eTestsBuild,
|
|
description: 'Run e2e tests against a sandbox in dev mode',
|
|
dependsOn: ['dev'],
|
|
port: PORT,
|
|
type: 'dev',
|
|
};
|