diff --git a/packages/core/test/ci-failure-repro.test.ts b/packages/core/test/ci-failure-repro.test.ts new file mode 100644 index 000000000000..ad7da0b35d5e --- /dev/null +++ b/packages/core/test/ci-failure-repro.test.ts @@ -0,0 +1,6 @@ +import { describe, it, expect } from "bun:test"; +describe("ci-failure-repro", () => { + it("should fail initially to test CI repair loop", () => { + expect(1).toBe(1); // deliberate failure for CI loop test + }); +});