We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1dce6d commit f212cc5Copy full SHA for f212cc5
2 files changed
tests/globalSetup.ts
@@ -13,5 +13,5 @@ export default function setup() {
13
14
return () => {
15
stopServer(globalThis.server, 'SIGINT');
16
- }
+ };
17
};
vitest.config.ts
@@ -1,7 +1,7 @@
1
-import { defineConfig } from 'vitest/config'
+import { defineConfig } from 'vitest/config';
2
3
export default defineConfig({
4
test: {
5
globalSetup: ['./tests/globalSetup.ts'],
6
}
7
-})
+});
0 commit comments