storybook/scripts/tasks/test-runner.ts
2022-10-11 15:15:43 +11:00

32 lines
871 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: ['run-registry', 'serve'],
async ready() {
return false;
},
async run({ sandboxDir, junitFilename }, { dryRun, debug }) {
const execOptions = { cwd: sandboxDir };
// Using a fixed version to work around core-js problems
await exec(`yarn add --dev @storybook/test-runner@0.8.1--canary.202.99d82aa.0`, execOptions);
console.log(await exact(`yarn why core-js`));
await exec(
`yarn test-storybook --url http://localhost:${PORT} --junit --index-json`,
{
...execOptions,
env: {
JEST_JUNIT_OUTPUT_FILE: junitFilename,
},
},
{ dryRun, debug }
);
},
};