Skip to content

Commit

Permalink
increased timeout in workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolotin committed Sep 7, 2024
1 parent 945be49 commit e436f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/src/test/columns.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const testCases: TestCase[] = [

tplTest.for(testCases)(
'checking preset for $presetName',
{ timeout: 20000 },
{ timeout: 30000 },
async ({ presetName, species, check }, { helper, expect }) => {
const resultC = (
await helper.renderTemplate(true, 'test.columns.test', ['conf'], (tx) => {
Expand All @@ -127,7 +127,7 @@ tplTest.for(testCases)(
};
})
).computeOutput('conf', (c) => c?.getDataAsJson());
const result = await awaitStableState(resultC, 15000);
const result = await awaitStableState(resultC, 20000);
check(expect, result);
}
);

0 comments on commit e436f9d

Please sign in to comment.