summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/pass.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/pass.ts')
-rw-r--r--cli/tests/testdata/test/pass.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/tests/testdata/test/pass.ts b/cli/tests/testdata/test/pass.ts
index 288cc7c83..b41f58e45 100644
--- a/cli/tests/testdata/test/pass.ts
+++ b/cli/tests/testdata/test/pass.ts
@@ -7,4 +7,7 @@ Deno.test("test 5", () => {});
Deno.test("test 6", () => {});
Deno.test("test 7", () => {});
Deno.test("test 8", () => {});
-Deno.test("test 9", () => {});
+Deno.test("test 9", () => {
+ console.log("console.log");
+ console.error("console.error");
+});