Skip to content

Commit

Permalink
Bump completion sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
octref authored Aug 9, 2018
1 parent f48d076 commit 346d46e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lsp/completion/script.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('Should autocomplete for <script>', () => {
await showFile(scriptDocUri);
await sleep(FILE_LOAD_SLEEP_TIME);
// TS LS completion starts slow.
await sleep(1500);
await sleep(2000);
});

it('completes module names when importing', async () => {
Expand All @@ -28,4 +28,4 @@ describe('Should autocomplete for <script>', () => {
it('completes Vue default export methods', async () => {
await testCompletion(scriptDocUri, position(20, 4), ['data', 'props', 'mounted']);
});
});
});

0 comments on commit 346d46e

Please sign in to comment.