From 24ad37ebdfa88611b01127432a041f47df763b1a Mon Sep 17 00:00:00 2001 From: Yevhen Vydolob Date: Wed, 27 Oct 2021 16:58:48 +0300 Subject: [PATCH] Fix test Signed-off-by: Yevhen Vydolob --- test/completion.test.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/completion.test.ts b/test/completion.test.ts index 04a072f2..a78bea7d 100644 --- a/test/completion.test.ts +++ b/test/completion.test.ts @@ -58,7 +58,12 @@ describe('Completion should work in multiple different scenarios', () => { await activate(travisUri); await updateSettings('schemaStore.enable', false); await testCompletion(travisUri, new vscode.Position(0, 0), { - items: [], + items: [ + { + label: 'Inline schema', + kind: 0, + }, + ], }); }); });