Skip to content

Commit

Permalink
build before tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Nov 20, 2024
1 parent 4f6c498 commit 887cf11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/cloudflare-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"typecheck": "tsc",
"preview": "npm run build && wrangler pages dev",
"test:e2e:vite": "playwright test -c playwright-vite.config.ts e2e.test.ts",
"test:e2e:pages": "playwright test -c playwright-pages.config.ts e2e.test.ts"
"test:e2e:pages": "npm run build && playwright test -c playwright-pages.config.ts e2e.test.ts"
},
"dependencies": {
"@remix-run/cloudflare": "^2.14.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"start": "wrangler dev",
"typecheck": "tsc",
"preview": "npm run build && wrangler dev",
"test:e2e:workers": "playwright test -c playwright-workers.config.ts e2e.test.ts"
"test:e2e:workers": "npm run build && playwright test -c playwright-workers.config.ts e2e.test.ts"
},
"dependencies": {
"@remix-run/cloudflare": "^2.14.0",
Expand Down

0 comments on commit 887cf11

Please sign in to comment.