Skip to content

Commit

Permalink
Increase timeout before returning editor
Browse files Browse the repository at this point in the history
  • Loading branch information
avli committed Nov 10, 2019
1 parent 97b40fe commit 02f2b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cljParser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ async function getEditor(fileName: string): Promise<vscode.TextEditor> {
const uri = vscode.Uri.file(path.join(__dirname + testFolderLocation + fileName)),
document = await vscode.workspace.openTextDocument(uri),
editor = await vscode.window.showTextDocument(document);
await sleep(600);
await sleep(1500);
return editor;
};

0 comments on commit 02f2b41

Please sign in to comment.