Skip to content

Commit

Permalink
avniproject/avni-client#1544 | Increase time range to handle circle c…
Browse files Browse the repository at this point in the history
…i build failures
  • Loading branch information
himeshr committed Nov 8, 2024
1 parent ad0e503 commit d048076
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/application/FormElementGroupTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ describe('FormElementGroupTest', () => {
let nonVoidedFormElements = formElementGroup.nonVoidedFormElements();
let endTime = performance.now()
assert.equal(nonVoidedFormElements.length, 9000);
assert.isTrue(endTime - startTime < 200, 'Test should have completed within 200 milliseconds');
//on local should be less than 100ms
assert.isTrue(endTime - startTime < 300, 'Test should have completed within 100 milliseconds');
});

function createFormElement(uuid, answers = [], isVoided = false, parentGroupUuid = null) {
Expand Down

0 comments on commit d048076

Please sign in to comment.