Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"db:export-checks": "node scripts/export-checks.js",
"db:export-checklists": "node scripts/export-checklists.js",
"db:seed": "knex seed:run",
"prestart": "npm run db:migrate",
"start": "node server.js",
"test:e2e": "playwright test",
"test:e2e-ci": "playwright test --reporter=list",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: 'NODE_ENV=test npm run start',
command: 'npm run start',
url: 'http://localhost:3000',
reuseExistingServer: !process.env.CI,
stdout: 'pipe',
Expand Down
Loading