mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
|
|
export const vitestTests: Task = {
|
|
description: 'Run the Vitest tests of a sandbox',
|
|
dependsOn: ['sandbox'],
|
|
async ready() {
|
|
return false;
|
|
},
|
|
async run({ sandboxDir }, { dryRun, debug }) {
|
|
console.log(`running Vitest tests in ${sandboxDir}`);
|
|
|
|
return exec(`yarn vitest --testTimeout=15000`, { cwd: sandboxDir }, { dryRun, debug });
|
|
},
|
|
};
|