summaryrefslogtreecommitdiff
path: root/cli/tests/testdata
diff options
context:
space:
mode:
authorAdilson Schmitt Junior <adilsonschj@gmail.com>2022-05-02 21:43:03 +0200
committerGitHub <noreply@github.com>2022-05-02 15:43:03 -0400
commit256dcb058ac2dd2a935076922265278c56264050 (patch)
tree52e1e8557ab7c7405c0373f52bb51cafdd003d14 /cli/tests/testdata
parent66b9187a2dd2ea96e760b9bcd81a578dd338147d (diff)
fix(test/bench): accept file protocol module specifier CLI args (#14429)
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r--cli/tests/testdata/bench/file_protocol.out8
-rw-r--r--cli/tests/testdata/bench/file_protocol.ts1
-rw-r--r--cli/tests/testdata/test/file_protocol.out6
-rw-r--r--cli/tests/testdata/test/file_protocol.ts1
4 files changed, 16 insertions, 0 deletions
diff --git a/cli/tests/testdata/bench/file_protocol.out b/cli/tests/testdata/bench/file_protocol.out
new file mode 100644
index 000000000..5a384e1fa
--- /dev/null
+++ b/cli/tests/testdata/bench/file_protocol.out
@@ -0,0 +1,8 @@
+Check file://[WILDCARD]/bench/file_protocol.ts
+cpu: [WILDCARD]
+runtime: deno [WILDCARD] ([WILDCARD])
+
+[WILDCARD]/bench/file_protocol.ts
+benchmark time (avg) (min … max) p75 p99 p995
+------------------------------------------------- -----------------------------
+bench0 [WILDCARD] [WILDCARD]/iter[WILDCARD]([WILDCARD] … [WILDCARD]) [WILDCARD]
diff --git a/cli/tests/testdata/bench/file_protocol.ts b/cli/tests/testdata/bench/file_protocol.ts
new file mode 100644
index 000000000..06a07bb38
--- /dev/null
+++ b/cli/tests/testdata/bench/file_protocol.ts
@@ -0,0 +1 @@
+Deno.bench("bench0", () => {});
diff --git a/cli/tests/testdata/test/file_protocol.out b/cli/tests/testdata/test/file_protocol.out
new file mode 100644
index 000000000..252165950
--- /dev/null
+++ b/cli/tests/testdata/test/file_protocol.out
@@ -0,0 +1,6 @@
+Check file://[WILDCARD]/test/file_protocol.ts
+running 1 test from ./test/file_protocol.ts
+test 0 ... ok ([WILDCARD])
+
+test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
+
diff --git a/cli/tests/testdata/test/file_protocol.ts b/cli/tests/testdata/test/file_protocol.ts
new file mode 100644
index 000000000..79128c2b3
--- /dev/null
+++ b/cli/tests/testdata/test/file_protocol.ts
@@ -0,0 +1 @@
+Deno.test("test 0", () => {});