From 9d5c38242444f1737376a81877b7265fa401f99b Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Tue, 13 Feb 2024 20:26:26 +0800 Subject: [PATCH] chore: add volar services --- tests/services.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/services.ts 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', + }) +}