1import { fileURLToPath } from 'node:url'; 2 3import { beforeAll } from 'vitest'; 4 5beforeAll(() => { 6 process.chdir(fileURLToPath(new URL('.', import.meta.url))); 7});