1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 02:21:05 +08:00
2022-09-27 12:21:21 +10:00

27 lines
631 B
TypeScript

import type { Task } from '../task';
import { exec } from '../utils/exec';
import { PORT } from './serve';
export const e2eTests: Task = {
before: ['serve'],
junit: true,
async ready() {
return false;
},
async run({ junitFilename, template }, { dryRun, debug }) {
await exec(
'yarn playwright test --reporter=junit',
{
env: {
STORYBOOK_URL: `http://localhost:${PORT}`,
STORYBOOK_TEMPLATE_NAME: template.name,
...(junitFilename && {
PLAYWRIGHT_JUNIT_OUTPUT_NAME: junitFilename,
}),
},
},
{ dryRun, debug }
);
},
};