diff --git a/tests/storybook.ts b/tests/storybook.ts new file mode 100644 index 00000000..bb618591 --- /dev/null +++ b/tests/storybook.ts @@ -0,0 +1,13 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.d.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'storybookjs/storybook', + branch: 'next', + build: 'svelte-ecosystem-ci:build', + beforeTest: 'svelte-ecosystem-ci:before-test', + test: 'svelte-ecosystem-ci:test', + }) +}