-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(cat-voices): refactoring playwright
- Loading branch information
Showing
22 changed files
with
1,102 additions
and
268 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
4 changes: 0 additions & 4 deletions
4
catalyst_voices_packages/catalyst_cardano/catalyst_cardano/wallet-automation/.env
This file was deleted.
Oops, something went wrong.
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
27 changes: 25 additions & 2 deletions
27
catalyst_voices_packages/catalyst_cardano/catalyst_cardano/wallet-automation/compose.yml
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,6 +1,29 @@ | ||
version: "3" | ||
services: | ||
app: | ||
image: test-app:latest | ||
ports: | ||
- 8000:80 | ||
- "8000:80" | ||
healthcheck: | ||
test: ["CMD", "wget", "--spider", "http://localhost:80"] | ||
interval: 5s | ||
timeout: 2s | ||
retries: 12 | ||
networks: | ||
- test_network | ||
|
||
test: | ||
image: test:latest | ||
depends_on: | ||
app: | ||
condition: service_healthy | ||
# environment: | ||
# - APP_URL=http://app:80 | ||
volumes: | ||
- /output/results:/results | ||
networks: | ||
- test_network | ||
|
||
networks: | ||
test_network: | ||
name: test_network | ||
driver: bridge |
12 changes: 12 additions & 0 deletions
12
...yst_voices_packages/catalyst_cardano/catalyst_cardano/wallet-automation/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.