Skip to content

Commit d596040

Browse files
committed
Update test
1 parent ca3abf6 commit d596040

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/test/suite/extension.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import * as assert from "assert";
22
import { CompletionList, Position, commands, workspace } from "vscode";
33

4-
function sleep(duration: number): Thenable<void> {
5-
return new Promise(resolve => setTimeout(resolve, duration));
6-
}
7-
84
suite("Extension Test Suite", () => {
95

106
test("Completes for html", async () => {
@@ -19,6 +15,6 @@ suite("Extension Test Suite", () => {
1915
new Position(1, 14)
2016
);
2117

22-
//assert.strictEqual(list?.items[0].label, "some");
18+
assert.strictEqual(list?.items[0].label, "some");
2319
});
2420
});

0 commit comments

Comments
 (0)