From ec9e35af5d8db5e9460f79af80ece3ad7af67a5c Mon Sep 17 00:00:00 2001 From: Will Gordon Date: Sat, 1 Aug 2026 22:45:58 -0400 Subject: [PATCH] fix(test): registers cursor test files in stryker tap.testFiles Three unit test files covering mutation-tested modules (route-guard-cursor-agent-availability, route-guard-cursor-refresh, cursor-renewal) were missing from stryker.conf.json's tap.testFiles, tripping the mutation-test-coverage gate's drift detection. --- stryker.conf.json | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/stryker.conf.json b/stryker.conf.json index 831ee95a53..61f0cec814 100644 --- a/stryker.conf.json +++ b/stryker.conf.json @@ -39,9 +39,7 @@ "incremental": true, "incrementalFile": "reports/mutation/stryker-incremental.json", "testRunner": "tap", - "plugins": [ - "@stryker-mutator/tap-runner" - ], + "plugins": ["@stryker-mutator/tap-runner"], "tap": { "testFiles": [ "tests/unit/7993-noauth-proxy-routing.test.ts", @@ -191,6 +189,7 @@ "tests/unit/cooldown-epoch-string-3954.test.ts", "tests/unit/correctness/combo.property.test.ts", "tests/unit/correctness/sanitizers.property.test.ts", + "tests/unit/cursor-renewal.test.ts", "tests/unit/custom-model-target-format.test.ts", "tests/unit/db-reset-module-state.test.ts", "tests/unit/ddg-circuit-breaker-null-content-6999-7000.test.ts", @@ -267,6 +266,8 @@ "tests/unit/rotation-config-omniroute.test.ts", "tests/unit/route-explainability.test.ts", "tests/unit/route-guard-acp-agents-local-only.test.ts", + "tests/unit/route-guard-cursor-agent-availability.test.ts", + "tests/unit/route-guard-cursor-refresh.test.ts", "tests/unit/route-guard-forge-jcode-settings-local-only.test.ts", "tests/unit/route-guard-grok-build-settings-local-only.test.ts", "tests/unit/route-guard-middleware-local-only.test.ts", @@ -417,11 +418,7 @@ ".worktrees", ".stryker-tmp" ], - "reporters": [ - "progress", - "html", - "json" - ], + "reporters": ["progress", "html", "json"], "htmlReporter": { "fileName": "reports/mutation/mutation.html" },