summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/branch.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/coverage/branch.ts')
-rw-r--r--cli/tests/testdata/coverage/branch.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/cli/tests/testdata/coverage/branch.ts b/cli/tests/testdata/coverage/branch.ts
deleted file mode 100644
index 352167109..000000000
--- a/cli/tests/testdata/coverage/branch.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-export function branch(condition: boolean): boolean {
- if (condition) {
- return true;
- } else {
- return false;
- }
-}
-
-export function unused(condition: boolean): boolean {
- if (condition) {
- return false;
- } else {
- return true;
- }
-}