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

basic selenium test for menu button #979

Merged
merged 14 commits into from
May 10, 2023
Merged
6 changes: 6 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run start &
grzanka marked this conversation as resolved.
Show resolved Hide resolved
- name: Wait for app to start
run: |
while ! curl --fail http://localhost:3000; do
sleep 1
done
- run: npm test

deploy_gh_pages:
Expand Down
218 changes: 218 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@
"@types/react": "^18.0.9",
"@types/react-async-script": "^1.2.1",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/selenium-webdriver": "^4.1.14",
"@types/three": "^0.150.1",
"cross-env": "^7.0.3",
"gh-pages": "^5.0.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "2.8.7",
"react-app-rewired": "^2.2.1",
"selenium-webdriver": "^4.9.0",
"use-resize-observer": "^9.0.2"
}
}
Loading