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

16 lines
394 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 }, { debug: true });
},
};