-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.workspace.ts
More file actions
84 lines (79 loc) · 1.92 KB
/
Copy pathvitest.workspace.ts
File metadata and controls
84 lines (79 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { defineWorkspace } from 'vitest/config';
export default defineWorkspace([
// Unit test projects - each package runs its own unit tests
'packages/types',
'packages/test-utils',
'packages/migrations',
'packages/query-lang',
'packages/core',
'packages/ui-primitives',
'packages/desktop',
// Integration test project - runs core integration tests with real CozoDB
{
test: {
name: 'core-integration',
root: './packages/core',
globals: true,
environment: 'node',
include: ['test/integration/**/*.{test,spec}.ts'],
passWithNoTests: true,
pool: 'forks',
poolOptions: {
forks: {
singleFork: true,
},
},
},
},
// Migrations integration tests - runs migration tests with real CozoDB
{
test: {
name: 'migrations-integration',
root: './packages/migrations',
globals: true,
environment: 'node',
include: ['test/integration/**/*.{test,spec}.ts'],
passWithNoTests: true,
pool: 'forks',
poolOptions: {
forks: {
singleFork: true,
},
},
},
},
// Scripts test project - tests for build/utility scripts
{
test: {
name: 'scripts',
root: './scripts',
globals: true,
environment: 'node',
include: ['**/*.{test,spec}.ts'],
passWithNoTests: true,
pool: 'forks',
poolOptions: {
forks: {
singleFork: true,
},
},
},
},
// Mobile primitives integration tests - runs mobile service integration tests with real CozoDB
{
test: {
name: 'mobile-primitives-integration',
root: './packages/mobile-primitives',
globals: true,
environment: 'node',
include: ['test/integration/**/*.{test,spec}.ts'],
passWithNoTests: true,
pool: 'forks',
poolOptions: {
forks: {
singleFork: true,
},
},
},
},
]);