Skip to content

Commit

Permalink
Introduce unittest infra for extension test (#360)
Browse files Browse the repository at this point in the history
* Introduce unittest infra for extension test

This commit introduces unittest infra for extension test.

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Fix package-lock.json

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Add the origin of source file

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Update README.md

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Fix README.md

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Update src/Tests/README.md

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>

* Remove unnecessary clang-format str

ONE-vscode-DCO-1.0-Signed-off-by: Yongseop Kim <[email protected]>
  • Loading branch information
YongseopKim authored Mar 18, 2022
1 parent 4bef4cf commit 54e0881
Show file tree
Hide file tree
Showing 9 changed files with 817 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ out
node_modules
format.patch
Makefile
.vscode-test/**

# production for react-app
build
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
"--extensionTestsPath=${workspaceFolder}/out/Tests/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
"${workspaceFolder}/out/Tests/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
Expand Down
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.vscode/**
out/test/**
.vscode-test/**
out/Tests/**
.gitignore
**/tsconfig.json
**/.eslintrc.json
Expand Down
Loading

0 comments on commit 54e0881

Please sign in to comment.