storybook/scripts/tasks/smoke-test.ts
2022-09-27 12:21:21 +10:00

16 lines
419 B
TypeScript

import type { Task } from '../task';
import { exec } from '../utils/exec';
export const smokeTest: Task = {
before: ['sandbox'],
async ready() {
return false;
},
async run({ sandboxDir }, { dryRun, debug }) {
// eslint-disable-next-line no-console
console.log(`smoke testing in ${sandboxDir}`);
return exec(`yarn storybook --smoke-test`, { cwd: sandboxDir }, { dryRun, debug: true });
},
};