Skip to content

Commit

Permalink
Fix: cypress.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrb63 committed Mar 2, 2024
1 parent 01d88d2 commit 513a569
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: pnpm run build
start: pnpm run dev
env:
id: ${{ secrets.TESTING_ID }}
pw: ${{ secrets.TESTING_PW }}
Expand Down
5 changes: 3 additions & 2 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { defineConfig } from "cypress";
import { defineConfig } from 'cypress';

export default defineConfig({
viewportWidth: 1920,
viewportHeight: 1080,

e2e: {
setupNodeEvents(on, config) {
setupNodeEvents(_, __) {
// implement node event listeners here
},
},
Expand Down

0 comments on commit 513a569

Please sign in to comment.