1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 03:21:07 +08:00
storybook/scripts/test-runner-sandboxes.ts
2022-08-10 15:35:00 +10:00

45 lines
1.2 KiB
TypeScript

import { basename } from 'path';
import { createOptions, getOptionsOrPrompt } from './utils/options';
import { options as oncePerTemplateOptions, oncePerTemplate } from './once-per-template';
const scriptName = basename(__filename, 'ts');
const logger = console;
export const options = createOptions({
cadence: oncePerTemplateOptions.cadence,
junit: oncePerTemplateOptions.junit,
});
async function run() {
const { cadence, junit } = await getOptionsOrPrompt(`yarn ${scriptName}`, options);
await oncePerTemplate({
step: 'Installing Test Runner',
cd: true,
cadence,
parallel: true,
junit: undefined,
scriptName: 'test-storybook',
templateCommand: () => `yarn add --dev @storybook/test-runner`,
});
return oncePerTemplate({
step: 'Running Test Runner',
cd: true,
cadence,
parallel: false,
junit: undefined,
scriptName: 'test-storybook',
templateCommand: (template) =>
`yarn test-storybook --url ${`http://localhost:8001/${template.replace('/', '-')}/`}`,
});
}
if (require.main === module) {
run().catch((err) => {
logger.error(`🚨 An error occurred when executing "${scriptName}":`);
logger.error(err);
process.exit(1);
});
}