summaryrefslogtreecommitdiff
path: root/tests/testdata/test/pass.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/test/pass.ts')
-rw-r--r--tests/testdata/test/pass.ts37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/testdata/test/pass.ts b/tests/testdata/test/pass.ts
new file mode 100644
index 000000000..c4c0f45dc
--- /dev/null
+++ b/tests/testdata/test/pass.ts
@@ -0,0 +1,37 @@
+Deno.test("test 0", () => {});
+Deno.test("test 1", () => {});
+Deno.test("test 2", () => {});
+Deno.test("test 3", () => {});
+Deno.test("test 4", () => {});
+Deno.test("test 5", () => {});
+Deno.test("test 6", () => {});
+Deno.test("test 7", () => {});
+Deno.test("test 8", () => {
+ console.log("console.log");
+});
+Deno.test("test 9", () => {
+ console.error("console.error");
+});
+
+Deno.test("test\b", () => {
+ console.error("console.error");
+});
+Deno.test("test\f", () => {
+ console.error("console.error");
+});
+
+Deno.test("test\t", () => {
+ console.error("console.error");
+});
+
+Deno.test("test\n", () => {
+ console.error("console.error");
+});
+
+Deno.test("test\r", () => {
+ console.error("console.error");
+});
+
+Deno.test("test\v", () => {
+ console.error("console.error");
+});