Skip to content

Commit

Permalink
test(store-sync): fix looping vitest (#2443)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic authored Mar 14, 2024
1 parent dc850b2 commit df45c90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/store-sync/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,10 @@ export default defineConfig({
teardownTimeout: 500,
hookTimeout: 15000,
},
server: {
watch: {
// we build+import this file in test setup, which causes vitest to restart in a loop unless we ignore it here
ignored: ["**/test/mock-game-contracts/out/IWorld.sol/IWorld.abi.json"],
},
},
});

0 comments on commit df45c90

Please sign in to comment.