Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
qweliant committed May 1, 2024
1 parent 5c74c96 commit 2960099
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "0.0.0",
"private": true,
"scripts": {
"playright:test": "npx playwright test",
"playright:ui": "npx playwright test --ui",
"playwright:test": "npx playwright test",
"playwright:ui": "npx playwright test --ui",
"dev": "next dev -p 3000 --turbo | pino-pretty",
"build": "SKIP_VALIDATION=true next build",
"invite-users": "dotenv -e .env.local -e .env.development tsx scripts/invite.ts",
Expand Down
6 changes: 3 additions & 3 deletions core/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: 'pnpm dev',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
command: "pnpm start",
url: "http://127.0.0.1:3000",
reuseExistingServer: !process.env.CI,
},
});

0 comments on commit 2960099

Please sign in to comment.