From a7a3a771a0a0cb2df2a14bcf4b8c38bc69525dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 14 Apr 2020 20:09:50 +0200 Subject: test(inspector): add coverage test case (#4725) --- cli/tests/inspector_coverage.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cli/tests/inspector_coverage.js (limited to 'cli/tests/inspector_coverage.js') diff --git a/cli/tests/inspector_coverage.js b/cli/tests/inspector_coverage.js new file mode 100644 index 000000000..3db0e5a19 --- /dev/null +++ b/cli/tests/inspector_coverage.js @@ -0,0 +1,16 @@ +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(); -- cgit v1.2.3