1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 02:21:05 +08:00
2022-08-15 08:29:52 +08:00

27 lines
701 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, template }) {
const storybookController = await serveSandbox(builtSandboxDir, {});
await exec('yarn playwright test --reporter=junit', {
env: {
STORYBOOK_URL: `http://localhost:8001`,
STORYBOOK_TEMPLATE_NAME: template.name,
...(junitFilename && {
PLAYWRIGHT_JUNIT_OUTPUT_NAME: junitFilename,
}),
},
});
storybookController.abort();
},
};