mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import { bench, describe } from "vitest"
|
|
import { appendLog, benchOptions, sleepBench } from "./helper";
|
|
|
|
describe("S1", () => {
|
|
bench("B1", async () => {
|
|
await appendLog("F2 / S1 / B1")
|
|
await sleepBench();
|
|
}, benchOptions)
|
|
})
|