-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bafe2f6
commit 1bafb1a
Showing
1 changed file
with
7 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,24 +10,16 @@ | |
"test": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha.opts", | ||
"load-test": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-load.opts", | ||
"test-happy-path": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-happy-path.opts", | ||
"test-devworkspace-happy-path": "./generateIndex.sh && npm run tsc && mocha --opts mocha-devworkspace-happy-path.opts", | ||
"test-operatorhub-subscription": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-che-subscribe-operator.opts", | ||
"test-operatorhub-installation": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-che-operatorhub.opts", | ||
"test-wkspc-creation-and-ls": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-wkspc-creation-and-ls.opts", | ||
"test-java-vertx": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-java-vertx.opts", | ||
"test-git-ssh": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-git-ssh.opts", | ||
"test-git-self-sign-cert": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-git-self-sign-cert.opts", | ||
"test-git-publish-branch": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-git-publish-branch.opts", | ||
"test-openshift-connector": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-connector.opts", | ||
"test-all-devfiles": "./generateIndex.sh && ./initDevfileTests.sh", | ||
"test-all-devfiles": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-all-devfiles.opts", | ||
"test-factory": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-factory.opts", | ||
"test-all-factories": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-all-factories.opts", | ||
"test-intelij": "tsc && mocha --opts mocha.intelij.opts", | ||
"test-oauth": "tsc && mocha --opts mocha.ocp.link.opts", | ||
"lint": "tslint --fix -p .", | ||
"tsc": "tsc -p .", | ||
"init-mocha-opts": "tsc && mocha --opts mocha-single-devfile.opts --spec dist/tests/login/Login.spec.js", | ||
"test-plugin": "npm run init-mocha-opts -- --spec dist/tests/plugins/${USERSTORY}.spec.js", | ||
"test-plugin-ci": "export TS_DELETE_PLUGINS_TEST_WORKSPACE=false && npm run init-mocha-opts -- --spec dist/tests/plugins/${USERSTORY}.spec.js", | ||
"test-all-plugins": "tsc && mocha --opts mocha-all-plugins.opts" | ||
"tsc": "tsc -p ." | ||
}, | ||
"author": "Ihor Okhrimenko ([email protected])", | ||
"license": "ISC", | ||
|
@@ -37,16 +29,16 @@ | |
"@types/node": "11.13.4", | ||
"@types/rimraf": "2.0.2", | ||
"@types/selenium-webdriver": "3.0.16", | ||
"axios": "0.21.1", | ||
"axios": "0.18.1", | ||
"chai": "4.2.0", | ||
"chromedriver": "^93.0.1", | ||
"chromedriver": "80.0.1", | ||
"mocha": "7.1.1", | ||
"rimraf": "2.6.2", | ||
"selenium-webdriver": "3.6.0", | ||
"ts-node": "8.0.3", | ||
"tslint": "5.10.0", | ||
"typed-rest-client": "1.2.0", | ||
"typescript": "3.9.9" | ||
"typescript": "3.4.3" | ||
}, | ||
"dependencies": { | ||
"@eclipse-che/api": "7.5.0-SNAPSHOT", | ||
|