From 0be92155e8b099e6a90cd3f964991044109d58f4 Mon Sep 17 00:00:00 2001 From: "continue[bot]" <230936708+continue[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 06:04:55 +0000 Subject: [PATCH 1/2] Add Improve Test Coverage check --- .continue/checks/improve-test-coverage.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .continue/checks/improve-test-coverage.md diff --git a/.continue/checks/improve-test-coverage.md b/.continue/checks/improve-test-coverage.md new file mode 100644 index 000000000..7bdc0cf50 --- /dev/null +++ b/.continue/checks/improve-test-coverage.md @@ -0,0 +1,7 @@ +--- +name: Improve Test Coverage +--- + +Run tests for this repo with coverage reporting (e.g. for vitest, npx vitest run --coverage | head 50). Pick a file that is under-tested and add tests. + +Focus on unit, integration, and other backend-esque tests. Only test client components if many other components in the repo are tested. Don't add tests for test files or DB entities/models. \ No newline at end of file From 2927542b83a20494cda2b73dbc5868cc2e647cc4 Mon Sep 17 00:00:00 2001 From: "continue[bot]" <230936708+continue[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 06:31:42 +0000 Subject: [PATCH 2/2] Add Improve Test Coverage check