Skip to content

Commit

Permalink
Prepare UI tests for Camel-K for VS Code - extension installation (#200)
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Jelinek <[email protected]>
  • Loading branch information
djelinek authored and bfitzpat committed Nov 5, 2019
1 parent 128e025 commit 136b26a
Show file tree
Hide file tree
Showing 11 changed files with 936 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
.vscode-test/
*.vsix
*.sonarlint
test-resources
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ install:
- 'vsce package'
script:
- 'npm test --silent'
- 'npm run ui-test'
after_success:
- if [[ $TRAVIS_PULL_REQUEST == "false" && $TRAVIS_BRANCH == "master" ]]; then
sonar-scanner;
Expand Down
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/out/src/**/*.js"
],
"preLaunchTask": "npm: watch"
},
Expand All @@ -25,10 +25,10 @@
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite",
"--extensionTestsPath=${workspaceFolder}/out/src/test/suite",
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
"${workspaceFolder}/out/src/test/**/*.js"
],
"preLaunchTask": "npm: watch"
}
Expand Down
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ src/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
tslint.json
tslint.json
test-resources
Loading

0 comments on commit 136b26a

Please sign in to comment.