From 30f53be530a1baefd1addd83633218bc0c4b0e10 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Sun, 26 Oct 2025 11:37:09 +0000 Subject: [PATCH] add ember to ecosystem tests --- tests/ember.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/ember.ts 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', + }) +}