Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Source/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@
"ts-deepmerge": "8.0.0"
},
"devDependencies": {
"@cratis/arc.vite": "^20.49.2"
"@cratis/arc.vite": "^21.0.2"
},
"peerDependencies": {
"@cratis/arc": "^20.3.1",
"@cratis/arc.react": "^20.3.1",
"@cratis/arc": ">=20.3.1 <22",
"@cratis/arc.react": ">=20.3.1 <22",
"@cratis/fundamentals": "^7.10.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
5 changes: 4 additions & 1 deletion Source/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ export default defineConfig({
test: {
globals: true,
environment: 'node',
isolate: false,
// Isolated, because several spec files mock the same module (@cratis/arc.react/dialogs) with
// their own spies. With a shared module graph whichever file loaded first wins and the others
// observe zero calls, which showed up as an intermittent "expected one closeDialog call, got 0".
isolate: true,
fileParallelism: false,
pool: 'threads',
coverage: {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
"version": "0.0.0",
"packageManager": "yarn@4.5.3",
"devDependencies": {
"@cratis/arc": "^20.49.2",
"@cratis/arc.react": "^20.49.2",
"@cratis/arc.vite": "^20.49.2",
"@cratis/arc": "^21.0.2",
"@cratis/arc.react": "^21.0.2",
"@cratis/arc.vite": "^21.0.2",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
Expand Down
Loading