storybook/scripts/tasks/e2e-tests.ts
2022-08-12 15:19:08 +10:00

26 lines
643 B
TypeScript

import type { Task } from '../task';
import { exec } from '../utils/exec';
import { serveSandbox } from '../utils/serve-sandbox';
export const e2eTests: Task = {
before: ['build'],
junit: true,
async ready() {
return false;
},
async run(_, { builtSandboxDir, junitFilename }) {
const storybookController = await serveSandbox(builtSandboxDir, {});
await exec('yarn playwright test --reporter=junit', {
env: {
STORYBOOK_URL: `http://localhost:8001`,
...(junitFilename && {
PLAYWRIGHT_JUNIT_OUTPUT_NAME: junitFilename,
}),
},
});
storybookController.abort();
},
};