diff --git a/tests/solid-router.ts b/tests/solid-router.ts new file mode 100755 index 00000000..b9029232 --- /dev/null +++ b/tests/solid-router.ts @@ -0,0 +1,10 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.js' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'solidjs/solid-router', + test: ['test'], + }) +}