Skip to content

Commit a7372e0

Browse files
committed
Fix optional test
1 parent aba2b8f commit a7372e0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/lsp/fixture/completion/script/kindModifiers.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ export const getData = () => {
1010
d: 2
1111
}
1212
13-
res.a?.b
14-
res.
13+
res.a.
1514
}
1615
1716
getData()

test/vue3/features/completion/basic.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('Vue 3 integration test', () => {
1010
it('complete `setup`', async () => {
1111
await testCompletion(fileUri, position(6, 2), [
1212
{
13-
label: 'setup',
13+
label: 'setup?',
1414
kind: CompletionItemKind.Field
1515
}
1616
]);

0 commit comments

Comments
 (0)