summaryrefslogtreecommitdiff
path: root/cli/tests/inspector_coverage.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-15 05:26:31 -0400
committerGitHub <noreply@github.com>2020-04-15 11:26:31 +0200
commit263dc8f5fe09e57437d073429cc0fa1753362f06 (patch)
tree1ac456fc56a210709ffd9f04b15c37bee9688861 /cli/tests/inspector_coverage.js
parenta7a3a771a0a0cb2df2a14bcf4b8c38bc69525dd6 (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.js16
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();