From 32f52decd2b5635c5629846803b635c61f6118db Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 10 Dec 2024 09:40:04 -0300 Subject: [PATCH] chore: Bump mocha timeout Equivalent of #10550 but for mocha, introduced in #10353. Fixes timeout from [this run](https://github.com/AztecProtocol/aztec-packages/actions/runs/12250863217/job/34177362100). --- yarn-project/kv-store/.mocharc.json | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/yarn-project/kv-store/.mocharc.json b/yarn-project/kv-store/.mocharc.json index f6d8ef05651..9ec8f283886 100644 --- a/yarn-project/kv-store/.mocharc.json +++ b/yarn-project/kv-store/.mocharc.json @@ -1,13 +1,14 @@ { - "require": "ts-node/register", - "extensions": [ - "ts" - ], - "spec": [ - "./src/**/!(indexeddb)/*.test.ts" - ], - "node-option": [ - "experimental-specifier-resolution=node", - "loader=ts-node/esm" - ] - } + "require": "ts-node/register", + "extensions": [ + "ts" + ], + "spec": [ + "./src/**/!(indexeddb)/*.test.ts" + ], + "node-option": [ + "experimental-specifier-resolution=node", + "loader=ts-node/esm" + ], + "timeout": 30000 +} \ No newline at end of file