···11-import { fileURLToPath } from 'node:url';
22-33-import { createVitestConfig } from '@config/vite-base';
44-55-export default createVitestConfig(
66- fileURLToPath(new URL('./', import.meta.url)),
77- {
88- test: {
99- // Dont run tests in parallel. This is to ensure the test server can start up.
1010- // And that the port was not previously taken.
1111- fileParallelism: false,
1212- include: ['test/e2e/**/*.test.ts'],
1313- },
1414- },
1515-);
+7
packages/openapi-ts-tests/main/vitest.config.ts
···11+import { fileURLToPath } from 'node:url';
22+33+import { createVitestConfig } from '@config/vite-base';
44+55+export default createVitestConfig(
66+ fileURLToPath(new URL('./', import.meta.url)),
77+);