diff --git a/tests/services.ts b/tests/services.ts new file mode 100644 index 00000000..c02e2fe7 --- /dev/null +++ b/tests/services.ts @@ -0,0 +1,11 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.js' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'volarjs/services', + branch: 'master', + build: 'build', + }) +}