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

test(cat-voices): fix nightly tests #1142

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ src:

package-test:
FROM +src
ENV APP_URL http://app:80
ENV APP_URL http://test-app:80
RUN mkdir /results
VOLUME /results
ENTRYPOINT ["/bin/sh", "-c", "/usr/bin/xvfb-run --auto-servernum npm test", ""]
Expand Down Expand Up @@ -52,7 +52,7 @@ nightly-test:
--compose compose.yml \
--load test-app:latest=(+package-app) \
--load test:latest=(+package-test) \
--service app \
--service test-app \
--allow-privileged

RUN docker run --network=default_default --name=test test:latest && \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "3"
services:
app:
test-app:
image: test-app:latest
ports:
- 8000:80
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"homepage": "https://github.com/input-output-hk/catalyst-voices#readme",
"devDependencies": {
"@playwright/test": "^1.45.3",
"@playwright/test": "^1.48.0",
"@types/node": "^20.14.12"
},
"dependencies": {
Expand All @@ -30,7 +30,7 @@
"fs-extra": "^11.2.0",
"install": "^0.13.0",
"node-fetch": "^2.6.7",
"playwright": "^1.45.3",
"playwright": "^1.48.0",
"unzip-crx-3": "^0.2.0"
}
}
Loading