Skip to content

Commit

Permalink
fix docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Jun 28, 2024
1 parent 1b5590c commit 59fa083
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
load: true

- name: Run cypress
run: docker run cypress-test --browser firefox
run: docker run cypress-test test:browser:parallel:firefox

- name: Tear down iota sandbox
if: always()
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
load: true

- name: Run cypress
run: docker run cypress-test --browser chrome
run: docker run test:browser:parallel:chrome

- name: Tear down iota sandbox
if: always()
Expand Down
4 changes: 4 additions & 0 deletions bindings/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
"test": "npm run test:unit:node && npm run test:readme && npm run test:node && test:browser:parallel",
"test:node": "ts-mocha -r tsconfig-paths/register -p tsconfig.node.json ./examples/src/tests/*.ts --parallel --jobs 4 --retries 3 --timeout 180000 --exit",
"test:browser:parallel": "npm run build:examples:web && cypress-parallel -s test:browser -t 4 -d cypress/e2e -a '\"--quiet\"'",
"test:browser:parallel": "npm run build:examples:web && cypress-parallel -s test:browser:firefox -t 4 -d cypress/e2e -a '\"--quiet\"'",
"test:browser:parallel": "npm run build:examples:web && cypress-parallel -s test:browser:chrome -t 4 -d cypress/e2e -a '\"--quiet\"'",
"test:browser": "cypress run --headless",
"test:browser:firefox": "cypress run --headless --browser firefox",
"test:browser:chrome": "cypress run --headless --browser chrome",
"test:readme": "mocha ./tests/txm_readme.js --retries 3 --timeout 180000 --exit",
"test:readme:rust": "mocha ./tests/txm_readme_rust.js --retries 3 --timeout 360000 --exit",
"test:unit:node": "ts-mocha -p tsconfig.node.json ./tests/*.ts --parallel --exit",
Expand Down

0 comments on commit 59fa083

Please sign in to comment.