diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-15 05:26:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 11:26:31 +0200 |
commit | 263dc8f5fe09e57437d073429cc0fa1753362f06 (patch) | |
tree | 1ac456fc56a210709ffd9f04b15c37bee9688861 /cli/tests/inspector_coverage.js | |
parent | a7a3a771a0a0cb2df2a14bcf4b8c38bc69525dd6 (diff) |
Revert "test(inspector): add coverage test case (#4725)" (#4754)
Flaky and doesn't implement any features.
This reverts commit a7a3a771a0a0cb2df2a14bcf4b8c38bc69525dd6.
Diffstat (limited to 'cli/tests/inspector_coverage.js')
-rw-r--r-- | cli/tests/inspector_coverage.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/tests/inspector_coverage.js b/cli/tests/inspector_coverage.js deleted file mode 100644 index 3db0e5a19..000000000 --- a/cli/tests/inspector_coverage.js +++ /dev/null @@ -1,16 +0,0 @@ -function a() { - console.log("hello a"); -} - -function b() { - console.log("hello b"); -} - -// eslint-disable-next-line @typescript-eslint/no-unused-vars -function c() { - console.log("hello c"); -} - -a(); -b(); -b(); |