From 932634ef4221f62366295e039cd5735fb89ec158 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Sun, 15 Feb 2026 10:59:39 -0500 Subject: [PATCH] add intentionally failing test Co-authored-by: Cursor --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index cef9a03..bda7a8f 100644 --- a/test.js +++ b/test.js @@ -4,5 +4,6 @@ const assert = require("assert"); assert.strictEqual(add(1, 2), 3); assert.strictEqual(subtract(5, 3), 2); +assert.strictEqual(add(2, 2), 5); // intentionally wrong to fail CI console.log("All tests passed!");