15 lines
254 B
TypeScript
15 lines
254 B
TypeScript
|
|
import { beforeAll, afterEach, afterAll } from 'vitest'
|
||
|
|
|
||
|
|
// This file sets up the test environment
|
||
|
|
beforeAll(() => {
|
||
|
|
// Setup runs before all tests
|
||
|
|
})
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
// Cleanup after each test
|
||
|
|
})
|
||
|
|
|
||
|
|
afterAll(() => {
|
||
|
|
// Cleanup after all tests
|
||
|
|
})
|