Skip to content

Commit ffbb9a7

Browse files
Increase timeout on a few tests
1 parent 98eaaee commit ffbb9a7

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

packages/code-analyzer-flow-engine/test/engine.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ const ALL_FLOW_RULES: string[] = [
4040
'PreventPassingUserDataIntoElementWithoutSharing'
4141
];
4242

43+
jest.setTimeout(60_000);
44+
4345
describe('Tests for the FlowScannerEngine', () => {
4446
const flowScannerCommandWrapper: RunTimeFlowScannerCommandWrapper = new RunTimeFlowScannerCommandWrapper('python3');
4547

packages/code-analyzer-flow-engine/test/python/FlowScannerCommandWrapper.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const PATH_TO_MULTIPLE_FLOWS_WORKSPACE = path.resolve(__dirname, '..', 'test-dat
1010
const PATH_TO_EXAMPLE1: string = path.join(PATH_TO_MULTIPLE_FLOWS_WORKSPACE, 'example1_containsWithoutSharingViolations.flow-meta.xml');
1111
const PATH_TO_EXAMPLE2: string = path.join(PATH_TO_MULTIPLE_FLOWS_WORKSPACE, 'example2_containsWithSharingViolations.flow');
1212

13+
jest.setTimeout(60_000);
14+
1315
describe('FlowScannerCommandWrapper implementations', () => {
1416
describe('RunTimeFlowScannerCommandWrapper', () => {
1517
let workingFolder: string;

0 commit comments

Comments
 (0)