Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes testCompatibility script #4079

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/testCompatibility.sh
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ verifyAndStartWebserver() {
echoe "Stepping out"
cd ..
fi
if [ "${APP_FOLDERS[$i]}" != "/test/e2e-js-test-application" ]; then
if [ "${APP_FOLDERS[$i]}" != "/test/e2e-client-api-test-app" ] && [ "${APP_FOLDERS[$i]}" != "/test/e2e-js-test-application" ]; then
runWebserver ${APP_PORTS[$i]} ${APP_PUBLIC_FOLDERS[$i]} ${APP_PATH_CHECK[$i]}
else
npm run dev &
Expand Down
3 changes: 2 additions & 1 deletion test/e2e-client-api-test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"copy": "rm -rf .\\public\\assets && mkdirp public/assets && cp node_modules/@luigi-project/container/bundle.js node_modules/@luigi-project/core/*.* node_modules/@luigi-project/client/*.js node_modules/@sap-theming/theming-base-content/content/Base/baseLib/sap_fiori_3/css_variables.css public/assets/",
"serve": "live-server --port=3000 --mount=\"/node_modules\":\"./node_modules\" ./public --no-browser",
"start": "npm run copy && npm run serve",
"dev": "npm run copy && npm run serve",
"start": "npm run dev",
"cypress-browser": "cypress open --e2e --browser chrome -c video=false",
"cypress-headless": "cypress run -c video=false",
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
Loading