mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:41:21 +08:00
26 lines
643 B
TypeScript
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();
|
|
},
|
|
};
|