import { beforeAll, afterAll, afterEach } from 'vitest'; beforeAll(async () => { // Setup before all tests }); afterEach(() => { // Cleanup after each test }); afterAll(async () => { // Cleanup after all tests });