Skip to content

Commit

Permalink
fix: increase e2e test memory
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 committed Feb 21, 2025
1 parent 1ce43b4 commit c15ff28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export class RoutingAPIPipeline extends Stack {
`echo "UNICORN_SECRET=${unicornSecret}" >> .env`,
'npm install',
'npm run build',
'set NODE_OPTIONS=--max-old-space-size=4096 && npm run test:e2e',
'set NODE_OPTIONS=--max-old-space-size=8192 && npm run test:e2e',
],
})

Expand Down
2 changes: 1 addition & 1 deletion test/mocha/e2e/quote.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ describe('quote', function () {
}

before(async function () {
this.timeout(40000)
this.timeout(400000)
;[alice] = await ethers.getSigners()

// Make a dummy call to the API to get a block number to fork from.
Expand Down

0 comments on commit c15ff28

Please sign in to comment.