Files
BIPMaterialManager/tests/setup.ts
Misaka 9ac8707921 feat: configure Vitest testing framework
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-01 12:12:33 +08:00

15 lines
325 B
TypeScript

import { beforeAll, afterAll } from 'vitest';
import dotenv from 'dotenv';
// Load environment variables
dotenv.config({ path: '.env' });
beforeAll(async () => {
// Global test setup
console.log('Test suite starting...');
});
afterAll(async () => {
// Global test teardown
console.log('Test suite completed.');
});