Skip to content

Commit

Permalink
TERR-364
Browse files Browse the repository at this point in the history
- fixed operator to redirect stdout in overwrite mode instead of append in setup E2E testing parameter step for CI task in ci.yml
- fixed invocation of install instead of test for npx playwright step (install e2e dependencies) in ci.yml
  • Loading branch information
sanchezelton committed May 30, 2024
1 parent 75fce33 commit 9aadb67
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ jobs:
node-version: "18.x"

- name: Install E2E dependencies
run: npx playwright test
run: |
npx playwright install
- name: Setup E2E testing parameters
run: |
mkdir -p ./playwright/.auth
echo "{\"username\": \"admin\", \"password\": \"admin\" }" >> ./playwright/.auth/credentials.json
echo "{\"username\": \"admin\", \"password\": \"admin\" }" > ./playwright/.auth/credentials.json
- name: E2E testing
run: |
Expand Down

0 comments on commit 9aadb67

Please sign in to comment.