diff options
Diffstat (limited to 'tests/testdata/bench/explicit_start_and_end_low_precision.ts')
-rw-r--r-- | tests/testdata/bench/explicit_start_and_end_low_precision.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testdata/bench/explicit_start_and_end_low_precision.ts b/tests/testdata/bench/explicit_start_and_end_low_precision.ts new file mode 100644 index 000000000..23bdf19fe --- /dev/null +++ b/tests/testdata/bench/explicit_start_and_end_low_precision.ts @@ -0,0 +1,4 @@ +Deno.bench("noop with start and end", (b) => { + b.start(); + b.end(); +}); |