0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/bench/fail.ts

31 lines
540 B
TypeScript
Raw Normal View History

Deno.bench("bench0", () => {
throw new Error();
});
Deno.bench("bench1", () => {
throw new Error();
});
Deno.bench("bench2", () => {
throw new Error();
});
Deno.bench("bench3", () => {
throw new Error();
});
Deno.bench("bench4", () => {
throw new Error();
});
Deno.bench("bench5", () => {
throw new Error();
});
Deno.bench("bench6", () => {
throw new Error();
});
Deno.bench("bench7", () => {
throw new Error();
});
Deno.bench("bench8", () => {
throw new Error();
});
Deno.bench("bench9", () => {
throw new Error();
});