summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/no_tests_included/foo.ts
diff options
context:
space:
mode:
authorLevente Kurusa <lkurusa@kernelstuff.org>2023-04-19 23:30:52 +0200
committerGitHub <noreply@github.com>2023-04-19 23:30:52 +0200
commitc33675588117aad0b8fabfa5816676d95ba8067e (patch)
tree49cfb08f08a1345b0381f347a393cb397a9c8ce5 /cli/tests/testdata/coverage/no_tests_included/foo.ts
parenta8ca09f78a26c16ed07bcffd23f1f9f486fa04e4 (diff)
fix(test/coverage): exclude test files (#18748)
Fixes: #18454
Diffstat (limited to 'cli/tests/testdata/coverage/no_tests_included/foo.ts')
-rw-r--r--cli/tests/testdata/coverage/no_tests_included/foo.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/testdata/coverage/no_tests_included/foo.ts b/cli/tests/testdata/coverage/no_tests_included/foo.ts
new file mode 100644
index 000000000..fc2860ef0
--- /dev/null
+++ b/cli/tests/testdata/coverage/no_tests_included/foo.ts
@@ -0,0 +1,3 @@
+export function addNumbers(a: number, b: number): number {
+ return a + b;
+}