diff options
Diffstat (limited to 'cli/tests/testdata/coverage/complex_test.ts')
-rw-r--r-- | cli/tests/testdata/coverage/complex_test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/coverage/complex_test.ts b/cli/tests/testdata/coverage/complex_test.ts new file mode 100644 index 000000000..fda948bc3 --- /dev/null +++ b/cli/tests/testdata/coverage/complex_test.ts @@ -0,0 +1,5 @@ +import { complex } from "./complex.ts"; + +Deno.test("complex", function () { + complex("foo", "bar", "baz"); +}); |