-
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.
fix: timeouts of waiting on extensions complete installation Recommen…
…dedExtensions test Signed-off-by: mdolhalo <[email protected]>
- Loading branch information
mdolhalo
committed
Sep 15, 2023
1 parent
e38c24d
commit 0d9f9cc
Showing
9 changed files
with
114 additions
and
115 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
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
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
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
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 |
---|---|---|
@@ -1,62 +1,62 @@ | ||
{ | ||
"name": "@eclipse-che/che-e2e", | ||
"version": "7.75.0-SNAPSHOT", | ||
"description": "", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"lint": "eslint --fix .", | ||
"prettier": "prettier --config .prettierrc.json . --write", | ||
"tsc": "rm -rf ./dist && ./configs/sh-scripts/generateIndex.sh && tsc -p .", | ||
"test": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export USERSTORY=$USERSTORY && mocha --config dist/configs/mocharc.js", | ||
"driver-less-test": "export TS_USE_WEB_DRIVER_FOR_TEST=false && npm run test", | ||
"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-all-devfiles": " ./configs/sh-scripts/initDefaultValues.sh && ./configs/sh-scripts/initDevfileTests.sh", | ||
"devfile-acceptance-test-suite": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export TS_USE_WEB_DRIVER_FOR_TEST=false && mocha 'dist/specs/api/*.js' --config dist/configs/mocharc.js --delay --grep 'Devfile acceptance test suite'" | ||
}, | ||
"author": "Ihor Okhrimenko ([email protected])", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@eclipse-che/che-devworkspace-generator": "next", | ||
"@types/chai": "^4.3.4", | ||
"@types/clone-deep": "^4.0.1", | ||
"@types/mocha": "5.2.6", | ||
"@types/node": "11.13.4", | ||
"@types/rimraf": "2.0.2", | ||
"@types/selenium-webdriver": "4.1.3", | ||
"@types/shelljs": "^0.8.11", | ||
"@typescript-eslint/eslint-plugin": "^6.4.1", | ||
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"axios": "^0.25.0", | ||
"chai": "^4.3.4", | ||
"chromedriver": "^114.0.2", | ||
"clone-deep": "^4.0.1", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-header": "^3.1.1", | ||
"eslint-plugin-jsdoc": "^46.5.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"husky": "^8.0.3", | ||
"mocha": "^9.1.3", | ||
"monaco-page-objects": "3.1.0", | ||
"prettier": "^3.0.2", | ||
"rimraf": "2.6.2", | ||
"selenium-webdriver": "4.4.0", | ||
"shelljs": "^0.8.5", | ||
"ts-node": "^10.9.1", | ||
"typescript": "4.9.4", | ||
"vscode-extension-tester-locators": "3.1.0", | ||
"yaml": "^2.2.2" | ||
}, | ||
"dependencies": { | ||
"@eclipse-che/api": "latest", | ||
"inversify": "6.0.1", | ||
"reflect-metadata": "0.1.13", | ||
"@eclipse-che/che-devworkspace-generator": "7.75.0-SNAPSHOT" | ||
}, | ||
"resolutions": { | ||
"minimist": "^1.2.5" | ||
} | ||
"name": "@eclipse-che/che-e2e", | ||
"version": "7.75.0-SNAPSHOT", | ||
"description": "", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"lint": "eslint --fix .", | ||
"prettier": "prettier --config .prettierrc.json . --write", | ||
"tsc": "rm -rf ./dist && ./configs/sh-scripts/generateIndex.sh && tsc -p .", | ||
"test": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export USERSTORY=$USERSTORY && mocha --config dist/configs/mocharc.js", | ||
"driver-less-test": "export TS_USE_WEB_DRIVER_FOR_TEST=false && npm run test", | ||
"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-all-devfiles": " ./configs/sh-scripts/initDefaultValues.sh && ./configs/sh-scripts/initDevfileTests.sh", | ||
"devfile-acceptance-test-suite": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export TS_USE_WEB_DRIVER_FOR_TEST=false && mocha 'dist/specs/api/*.js' --config dist/configs/mocharc.js --delay --grep 'Devfile acceptance test suite'" | ||
}, | ||
"author": "Ihor Okhrimenko ([email protected])", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@eclipse-che/che-devworkspace-generator": "next", | ||
"@types/chai": "^4.3.4", | ||
"@types/clone-deep": "^4.0.1", | ||
"@types/mocha": "5.2.6", | ||
"@types/node": "11.13.4", | ||
"@types/rimraf": "2.0.2", | ||
"@types/selenium-webdriver": "4.1.3", | ||
"@types/shelljs": "^0.8.11", | ||
"@typescript-eslint/eslint-plugin": "^6.4.1", | ||
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"axios": "^0.25.0", | ||
"chai": "^4.3.4", | ||
"chromedriver": "^114.0.2", | ||
"clone-deep": "^4.0.1", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-plugin-header": "^3.1.1", | ||
"eslint-plugin-jsdoc": "^46.5.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"husky": "^8.0.3", | ||
"mocha": "^9.1.3", | ||
"monaco-page-objects": "3.1.0", | ||
"prettier": "^3.0.2", | ||
"rimraf": "2.6.2", | ||
"selenium-webdriver": "4.4.0", | ||
"shelljs": "^0.8.5", | ||
"ts-node": "^10.9.1", | ||
"typescript": "4.9.4", | ||
"vscode-extension-tester-locators": "3.1.0", | ||
"yaml": "^2.2.2" | ||
}, | ||
"dependencies": { | ||
"@eclipse-che/api": "latest", | ||
"inversify": "6.0.1", | ||
"reflect-metadata": "0.1.13", | ||
"@eclipse-che/che-devworkspace-generator": "7.75.0-SNAPSHOT" | ||
}, | ||
"resolutions": { | ||
"minimist": "^1.2.5" | ||
} | ||
} |
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
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
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
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