mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
13 lines
310 B
JavaScript
Generated
13 lines
310 B
JavaScript
Generated
import { afterAll, afterEach, beforeAll, beforeEach } from "bun:test";
|
|
|
|
for (let suffix of ["#1", "#2"]) {
|
|
for (let fn of [
|
|
["beforeAll", beforeAll],
|
|
["afterAll", afterAll],
|
|
["afterEach", afterEach],
|
|
["beforeEach", beforeEach],
|
|
]) {
|
|
fn[1](() => console.log(fn[0] + ":", suffix));
|
|
}
|
|
}
|