diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-01-11 21:17:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 21:17:25 +0100 |
commit | 13751d9de6bb77daf38ac921e35015c238d06c35 (patch) | |
tree | b158b1206225f64374020a8c338dc951bf2ac2fd /cli/tests/testdata/coverage/multifile/a_test.js | |
parent | f3ece7457a2f87787da1d77afdd4ccec7ba03574 (diff) |
fix(coverage): merge coverage ranges (#13334)
Covered ranges were not merged and thus it appeared that some lines
might be uncovered. To fix this I used "v8-coverage" that takes care
of merging the ranges properly. With this change, coverage collected
from a file by multiple entrypoints is now correctly calculated.
I ended up forking https://github.com/demurgos/v8-coverage and adding
"cli/tools/coverage/merge.rs" and "cli/tools/coverage/range_tree.rs".
Diffstat (limited to 'cli/tests/testdata/coverage/multifile/a_test.js')
-rw-r--r-- | cli/tests/testdata/coverage/multifile/a_test.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/testdata/coverage/multifile/a_test.js b/cli/tests/testdata/coverage/multifile/a_test.js new file mode 100644 index 000000000..d5d9c3533 --- /dev/null +++ b/cli/tests/testdata/coverage/multifile/a_test.js @@ -0,0 +1,8 @@ +import { test } from "./mod.js"; + +Deno.test({ + name: "bugrepo a", + fn: () => { + test(true); + }, +}); |