Skip to content

Commit

Permalink
fix playwright CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed Jun 6, 2024
1 parent 894d263 commit 015ed74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: yarn install
- name: Install Playwright browsers
run: yarn playwright install --with-deps
- name: Set up testnet environment
run: cp apps/dapp/.env.testnet apps/dapp/.env.local
- name: Build dApp
run: yarn dapp build
- name: Run Playwright tests
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"start": "next start",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:e2e": "cp .env.testnet .env && playwright test",
"test:e2e": "cp .env.testnet .env.local && playwright test",
"ts": "tsc --noEmit --incremental",
"ts:watch": "ts --watch"
},
Expand Down

0 comments on commit 015ed74

Please sign in to comment.