-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathvitest.config.ts
More file actions
57 lines (53 loc) · 1.51 KB
/
vitest.config.ts
File metadata and controls
57 lines (53 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { fileURLToPath } from 'node:url'
import { defineVitestProject } from '@nuxt/test-utils/config'
import { defineConfig } from 'vitest/config'
const ROOT = fileURLToPath(new URL('.', import.meta.url))
const layerAliases = [
{ find: /^#layers\/auth\/(.+?)(\.ts|\.vue)?$/, replacement: `${ROOT}/layers/auth/$1$2` },
{ find: /^#layers\/todo\/(.+?)(\.ts|\.vue)?$/, replacement: `${ROOT}/layers/todo/$1$2` },
]
const rootAliases = [
{ find: /^~~\/(.*)$/, replacement: `${ROOT}/$1` },
{ find: /^@@\/(.*)$/, replacement: `${ROOT}/$1` },
{ find: /^~\/(.*)$/, replacement: `${ROOT}/app/$1` },
{ find: /^@\/(.*)$/, replacement: `${ROOT}/app/$1` },
]
export default defineConfig({
test: {
projects: [
{
resolve: {
alias: [...layerAliases, ...rootAliases],
},
test: {
name: 'unit',
include: [
'test/unit/*.{test,spec}.ts',
'layers/*/test/unit/*.{test,spec}.ts',
],
environment: 'node',
},
},
await defineVitestProject({
test: {
name: 'nuxt',
include: [
'test/nuxt/*.{test,spec}.ts',
'layers/*/test/nuxt/*.{test,spec}.ts',
],
environment: 'nuxt',
environmentOptions: {
nuxt: {
rootDir: fileURLToPath(new URL('.', import.meta.url)),
domEnvironment: 'happy-dom',
},
},
},
}),
],
coverage: {
enabled: true,
provider: 'v8',
},
},
})