Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 777d729

Browse files
authored
Increase timeout limit (#352)
1 parent 6db2f61 commit 777d729

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

spec/async-spec-helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ exports.conditionPromise = async function (condition, description = condition.to
4242
return
4343
}
4444

45-
if (Date.now() - startTime > 5000) {
45+
if (Date.now() - startTime > 120000) {
4646
throw new Error('Timed out waiting on ' + description)
4747
}
4848
}

spec/spell-check-spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ describe('Spell check', function () {
461461

462462
await conditionPromise(() => {
463463
markers = getMisspellingMarkers()
464+
console.log(markers)
464465
return markers.length === 1
465466
&& markers[0].getBufferRange().start.column === 7
466467
&& markers[0].getBufferRange().end.column === 11

0 commit comments

Comments
 (0)