mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-04 18:51:20 +01:00
19 lines
368 B
TypeScript
19 lines
368 B
TypeScript
import { bench, runIfMain } from "./bench.ts";
|
|
import { runTests } from "./mod.ts";
|
|
|
|
import "./asserts_test.ts";
|
|
|
|
bench(async function testingSerial(b): Promise<void> {
|
|
b.start();
|
|
await runTests();
|
|
b.stop();
|
|
});
|
|
|
|
bench(async function testingParallel(b): Promise<void> {
|
|
b.start();
|
|
await runTests({ parallel: true });
|
|
b.stop();
|
|
});
|
|
|
|
runIfMain(import.meta);
|