Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite('Extension Test Suite', () => {
test('3. Extension should create the extension log file', async () => {
// Open the document to trigger the extension
vscode.workspace.openTextDocument(getWorkspaceFile('Main.hs'));
assert.ok(await runWithIntervalAndTimeout(() => workspaceFileExist(LOG), 1, 30));
assert.ok(await runWithIntervalAndTimeout(() => workspaceFileExist(LOG), 1, 60));
});

test('4. Extension log should have server output', async () => {
Expand All @@ -57,7 +57,7 @@ suite('Extension Test Suite', () => {
}
return false;
};
assert.ok(await runWithIntervalAndTimeout(checkServerLog, 5, 60),
assert.ok(await runWithIntervalAndTimeout(checkServerLog, 5, 120),
'Extension log file has no expected hls output');
});

Expand Down
2 changes: 1 addition & 1 deletion test/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export async function run(): Promise<void> {
// Create the mocha test
const mocha = new Mocha({
ui: 'tdd',
timeout: 180_000, // 3 mins
timeout: 210_000, // 3.5 mins
color: true,
});

Expand Down