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

Commit

Permalink
Creating a basic blank profile for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Jul 2, 2019
1 parent efc4eb6 commit 4bca7ca
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
.vscode-test/
*.vsix
.ionide
test-output.xml
test-output.xml
.test-profiles
3 changes: 3 additions & 0 deletions .test-profiles/simple-profile/data/User/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.fontSize": 24
}
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: watch"
},
{
"name": "Run Extension (clean profile)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--user-data-dir=${workspaceFolder}/.test-profiles/simple-profile/data",
"--extensions-dir=${workspaceFolder}/.test-profiles/simple-profile/ext"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
Expand Down

0 comments on commit 4bca7ca

Please # to comment.