Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes project compile
Browse files Browse the repository at this point in the history
ncordon committed Jan 22, 2025
1 parent 6e7e5c6 commit 57c7f5d
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions packages/vscode-extension/tests/specs/api/autoCompletion.spec.ts
Original file line number Diff line number Diff line change
@@ -95,15 +95,20 @@ suite('Auto completion spec', () => {
{
label: 'resume',
kind: vscode.CompletionItemKind.Method,
detail: '(procedure) ' + procedures['apoc.trigger.resume'].signature,
documentation: procedures['apoc.trigger.resume'].description,
detail:
'(procedure) ' +
procedures['cypher 5']['apoc.trigger.resume'].signature,
documentation:
procedures['cypher 5']['apoc.trigger.resume'].description,
tags: [CompletionItemTag.Deprecated],
},
{
label: 'start',
kind: vscode.CompletionItemKind.Method,
detail: '(procedure) ' + procedures['apoc.trigger.start'].signature,
documentation: procedures['apoc.trigger.start'].description,
detail:
'(procedure) ' +
procedures['cypher 5']['apoc.trigger.start'].signature,
documentation: procedures['cypher 5']['apoc.trigger.start'].description,
},
];
await testCompletionContains({
@@ -119,15 +124,19 @@ suite('Auto completion spec', () => {
{
label: 'uuid',
kind: vscode.CompletionItemKind.Function,
detail: '(function) ' + functions['apoc.create.uuid'].signature,
documentation: functions['apoc.create.uuid'].description,
detail:
'(function) ' + functions['cypher 5']['apoc.create.uuid'].signature,
documentation: functions['cypher 5']['apoc.create.uuid'].description,
tags: [CompletionItemTag.Deprecated],
},
{
label: 'uuidBase64',
kind: vscode.CompletionItemKind.Function,
detail: '(function) ' + functions['apoc.create.uuidBase64'].signature,
documentation: functions['apoc.create.uuidBase64'].description,
detail:
'(function) ' +
functions['cypher 5']['apoc.create.uuidBase64'].signature,
documentation:
functions['cypher 5']['apoc.create.uuidBase64'].description,
},
];
await testCompletionContains({

0 comments on commit 57c7f5d

Please sign in to comment.