Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Mar 2, 2024
1 parent 9cbcccd commit e87e8ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as assert from "assert";
import * as fs from "fs";
import * as path from "path";

// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
Expand Down Expand Up @@ -27,6 +28,6 @@ suite("Extension Test Suite", () => {
fs.mkdirSync("./test-bin", { recursive: true });

let result = await myExtension.ensureNextLSDownloaded("test-bin");
assert.equal(result, "test-bin/nextls");
assert.equal(path.normalize(result), path.normalize("test-bin/nextls"));
});
});

0 comments on commit e87e8ec

Please sign in to comment.