Skip to content

Commit 14fe201

Browse files
lambdalisueclaude
andcommitted
fix: exclude custom_test.ts from coverage to prevent temp file issues
The integration tests in custom_test.ts create temporary files with cache-busting fragments that cause coverage generation to fail when the temporary files are cleaned up but still referenced in coverage. This fix excludes the integration test from coverage while preserving all test functionality. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c9f7c79 commit 14fe201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"tasks": {
88
"check": "deno check ./**/*.ts",
99
"test": "deno test -A --parallel --shuffle --doc",
10-
"test:coverage": "deno task test --coverage=.coverage",
10+
"test:coverage": "deno test -A --parallel --shuffle --doc --coverage=.coverage --ignore=denops/fall/custom_test.ts",
1111
"coverage": "deno coverage .coverage --exclude=testdata/",
1212
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=deno.land,jsr.io,registry.npmjs.org jsr:@molt/cli ./**/*.ts",
1313
"update:write": "deno task -q update --write",

0 commit comments

Comments
 (0)