diff --git a/tests/ember.ts b/tests/ember.ts new file mode 100644 index 00000000..bc3e347c --- /dev/null +++ b/tests/ember.ts @@ -0,0 +1,12 @@ +import { runInRepo } from '../utils.ts' +import type { RunOptions } from '../types.d.ts' + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: 'embroider-build/embroider', + branch: 'main', + build: 'build', + test: 'test', + }) +}