storybook/scripts/tasks/smoke-test.ts
2022-08-24 19:00:38 -04:00

16 lines
377 B
TypeScript

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