summaryrefslogtreecommitdiff
path: root/tests/specs/bench/only
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-04-29 10:08:27 -0400
committerGitHub <noreply@github.com>2024-04-29 10:08:27 -0400
commitda52058a945999d486b07700d2834f027a65947c (patch)
treeb6031c274cbc36dcefc6d681473e366cdb208c89 /tests/specs/bench/only
parentb02ffec37c73be8a73b95b33b32efa693e84e01b (diff)
chore: migrate bench, publish, and more itests to spec tests (#23584)
Diffstat (limited to 'tests/specs/bench/only')
-rw-r--r--tests/specs/bench/only/__test__.jsonc5
-rw-r--r--tests/specs/bench/only/only.out9
-rw-r--r--tests/specs/bench/only/only.ts15
3 files changed, 29 insertions, 0 deletions
diff --git a/tests/specs/bench/only/__test__.jsonc b/tests/specs/bench/only/__test__.jsonc
new file mode 100644
index 000000000..7d50a6dec
--- /dev/null
+++ b/tests/specs/bench/only/__test__.jsonc
@@ -0,0 +1,5 @@
+{
+ "args": "bench only.ts",
+ "output": "only.out",
+ "exitCode": 1
+}
diff --git a/tests/specs/bench/only/only.out b/tests/specs/bench/only/only.out
new file mode 100644
index 000000000..e3332d174
--- /dev/null
+++ b/tests/specs/bench/only/only.out
@@ -0,0 +1,9 @@
+Check [WILDCARD]/only.ts
+cpu: [WILDCARD]
+runtime: deno [WILDCARD] ([WILDCARD])
+
+[WILDCARD]/only.ts
+benchmark time (avg) iter/s (min … max) p75 p99 p995
+--------------------------------------------------------------- -----------------------------
+only [WILDCARD] [WILDCARD]/iter[WILDCARD]([WILDCARD] … [WILDCARD]) [WILDCARD]
+error: Bench failed because the "only" option was used
diff --git a/tests/specs/bench/only/only.ts b/tests/specs/bench/only/only.ts
new file mode 100644
index 000000000..0129c024c
--- /dev/null
+++ b/tests/specs/bench/only/only.ts
@@ -0,0 +1,15 @@
+Deno.bench({
+ name: "before",
+ fn() {},
+});
+
+Deno.bench({
+ only: true,
+ name: "only",
+ fn() {},
+});
+
+Deno.bench({
+ name: "after",
+ fn() {},
+});