Merge remote-tracking branch 'origin/master' into riya/frontend-activity-auth-boundary-test

This commit is contained in:
Riya
2026-02-07 17:11:22 +00:00
12 changed files with 1890 additions and 4 deletions

View File

@@ -16,8 +16,16 @@ export default defineConfig({
provider: "v8",
reporter: ["text", "lcov"],
reportsDirectory: "./coverage",
include: ["src/**/*.{ts,tsx}"],
// Policy (scoped gate): require 100% coverage on *explicitly listed* unit-testable modules first.
// We'll expand this include list as we add more unit/component tests.
include: ["src/lib/backoff.ts"],
exclude: ["**/*.d.ts", "src/**/__generated__/**", "src/**/generated/**"],
thresholds: {
lines: 100,
statements: 100,
functions: 100,
branches: 100,
},
},
},
});