We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61db474 commit a3cd825Copy full SHA for a3cd825
src/test/suite/extension.test.ts
@@ -2,12 +2,11 @@ import * as assert from 'assert';
2
import { ClassCompletionItemProvider } from '../../extension';
3
import {
4
workspace,
5
- Position,
6
- CancellationToken,
+ Uri,
7
Event,
+ CancellationToken,
8
CompletionContext,
9
CompletionTriggerKind,
10
- Uri,
11
CompletionItem
12
} from 'vscode';
13
@@ -27,7 +26,6 @@ class MockCompletionContext implements CompletionContext {
27
26
28
suite('Extension Test Suite', () => {
29
30
- const position = new Position(0, 0);
31
const token = new MockCancellationToken(false);
32
const context = new MockCompletionContext();
33
0 commit comments