Skip to content

Commit

Permalink
chore: Bump mocha timeout (#10571)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
spalladino authored Dec 10, 2024
1 parent 323e2eb commit 35e525f
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions yarn-project/kv-store/.mocharc.json
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 35e525f

Please sign in to comment.