mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-28 05:10:17 +08:00
27 lines
655 B
TypeScript
27 lines
655 B
TypeScript
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
import { PORT } from './serve';
|
|
|
|
export const testRunner: Task = {
|
|
description: 'Run the test runner against a sandbox',
|
|
junit: true,
|
|
dependsOn: ['serve'],
|
|
async ready() {
|
|
return false;
|
|
},
|
|
async run({ sandboxDir, junitFilename }, { dryRun, debug }) {
|
|
const execOptions = { cwd: sandboxDir };
|
|
|
|
await exec(
|
|
`yarn test-storybook --url http://localhost:${PORT} --junit --index-json --maxWorkers=2`,
|
|
{
|
|
...execOptions,
|
|
env: {
|
|
JEST_JUNIT_OUTPUT_FILE: junitFilename,
|
|
},
|
|
},
|
|
{ dryRun, debug }
|
|
);
|
|
},
|
|
};
|