diff --git a/packages/store-sync/vitest.config.ts b/packages/store-sync/vitest.config.ts index 61f51f284f..ebc97d5e06 100644 --- a/packages/store-sync/vitest.config.ts +++ b/packages/store-sync/vitest.config.ts @@ -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"], + }, + }, });