storybook/scripts/tasks/test-runner-dev.ts
2023-03-20 16:38:30 +01:00

10 lines
286 B
TypeScript

import { testRunnerBuild as testRunnerProd } from './test-runner-build';
import { PORT } from './dev';
export const testRunnerDev: typeof testRunnerProd = {
...testRunnerProd,
port: PORT,
description: 'Run the test runner against a sandbox in dev mode',
dependsOn: ['dev'],
};