storybook/scripts/tasks/test-runner.ts
2022-08-26 11:34:03 +02:00

32 lines
1013 B
TypeScript

import { join } from 'path';
import { pathExistsSync, readFile, writeFile } from 'fs-extra';
import { servePackages } from '../utils/serve-packages';
import type { Task } from '../task';
import { exec } from '../utils/exec';
import { serveSandbox } from '../utils/serve-sandbox';
export const testRunner: Task = {
junit: true,
before: ['publish', 'build'],
async ready() {
return false;
},
async run(_, { sandboxDir, builtSandboxDir, junitFilename }) {
const execOptions = { cwd: sandboxDir };
// We could split this out into a separate task if it became annoying
const publishController = await servePackages({});
await exec(`yarn add --dev @storybook/test-runner@0.6.4--canary.179.c8f28d5.0`, execOptions);
const storybookController = await serveSandbox(builtSandboxDir, {});
await exec(`yarn test-storybook --url http://localhost:8001 --junit ${junitFilename}`, {
...execOptions,
});
publishController.abort();
storybookController.abort();
},
};