47 lines
2.4 KiB
JSON
47 lines
2.4 KiB
JSON
{
|
|
"name": "e2e",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"cleanup-docker": "if [ $(docker ps -a | grep -c selenium-e2e) -gt 0 ]; then docker rm -f $(docker ps --filter \"name=selenium-e2e\" -aq); fi;",
|
|
"test-docker": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL eclipse/che-e2e:nightly",
|
|
"test-docker-mount-e2e": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL -v $(pwd):/tmp/e2e:Z eclipse/che-e2e:nightly",
|
|
"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-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-all-devfiles": "./generateIndex.sh && npm run lint && npm run tsc && mocha --opts mocha-all-devfiles.opts",
|
|
"lint": "tslint --fix -p .",
|
|
"tsc": "tsc -p ."
|
|
},
|
|
"author": "Ihor Okhrimenko (iokhrime@redhat.com)",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.6",
|
|
"@types/node": "^11.13.4",
|
|
"@types/rimraf": "^2.0.2",
|
|
"@types/selenium-webdriver": "^3.0.16",
|
|
"axios": "0.18.1",
|
|
"chai": "^4.2.0",
|
|
"chromedriver": "^80.0.1",
|
|
"mocha": "^6.1.4",
|
|
"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.4.3",
|
|
"@eclipse-che/api": "^7.5.0-SNAPSHOT"
|
|
},
|
|
"dependencies": {
|
|
"inversify": "^5.0.1",
|
|
"reflect-metadata": "^0.1.13"
|
|
}
|
|
}
|