From 5cf27559f0d91075b2a15c24bd3108c6383dc0ae Mon Sep 17 00:00:00 2001 From: Birk Skyum Date: Wed, 18 Dec 2024 18:40:48 +0100 Subject: [PATCH] Add solid-router --- tests/solid-router.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 tests/solid-router.ts 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'], + }) +}