test that failing test breaks ci

This commit is contained in:
2025-03-27 08:28:52 -07:00
parent 83cf38ed91
commit bef93538fb

View File

@@ -2,6 +2,6 @@ import { describe, expect, test } from "@jest/globals";
describe("sum", () => {
test("adds 1 + 2 to equal 3", () => {
expect(1 + 2).toBe(3);
expect(1 + 2).toBe(4);
});
});
});