Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit bc10be0

Browse files
committed
Use vscode-test ^1.3
1 parent 6314bff commit bc10be0

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

package-lock.json

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"tslint-config-prettier": "^1.18.0",
6565
"typescript": "^3.0.0",
6666
"vsce": "^1.63.0",
67-
"vscode-test": "^0.4.3"
67+
"vscode-test": "^1.3.0"
6868
},
6969
"contributes": {
7070
"languages": [

test/runTest.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import * as path from 'path';
33
import { runTests } from 'vscode-test';
44

55
(async () => {
6-
const extensionPath = path.resolve(__dirname, '../../');
7-
const testRunnerPath = path.resolve(__dirname, './suite');
6+
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
7+
const extensionTestsPath = path.resolve(__dirname, './suite');
88

99
await runTests({
10-
extensionPath,
11-
testRunnerPath,
10+
extensionDevelopmentPath,
11+
extensionTestsPath,
1212
});
1313
})();

0 commit comments

Comments
 (0)