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

Commit 7d97ef9

Browse files
committed
feat: add testing infrastructure
1 parent 47e14f2 commit 7d97ef9

27 files changed

+2849
-281
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.vscode-test
12
SourcegraphQuickPick.ts
23
graphqlQuery.ts

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules
33
*.vsix
44
coverage/
55
.nyc_output/
6+
.vscode-test

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.vscode-test
12
package.json
23
package-lock.json
34
out/

.vscode/launch.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
"type": "extensionHost",
1919
"request": "launch",
2020
"runtimeExecutable": "${execPath}",
21-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
21+
"args": [
22+
"--extensionDevelopmentPath=${workspaceRoot}",
23+
"--extensionTestsPath=${workspaceRoot}/out/test/suite/index",
24+
],
2225
"stopOnEntry": false,
2326
"sourceMaps": true,
2427
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],

0 commit comments

Comments
 (0)