Skip to content

Commit

Permalink
chore: increase test timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Selman <[email protected]>
  • Loading branch information
dselman committed Apr 23, 2024
1 parent d9d98fa commit 3ed8872
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accordproject/template-engine",
"version": "2.5.2",
"version": "2.5.3",
"description": "Generation of AgreementMark from TemplateMark + JSON Data",
"homepage": "https://github.com/accordproject",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion test/JavaScriptEvaluator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('javascript evaluator', () => {
test('should pass stress test with javascript safe', async () => {
const promises = [];
for(let n=0; n < 1000; n++) {
const p = javaScriptEvaluator.evalChildProcess(SIMPLE, {timeout: 30000});
const p = javaScriptEvaluator.evalChildProcess(SIMPLE, {timeout: 60000});
promises.push(p);
}
return Promise.all(promises)
Expand Down

0 comments on commit 3ed8872

Please sign in to comment.