Skip to content

Commit

Permalink
chore: npm test 실패시 브라우저를 여는 옵션 제거(#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakyeonko3 committed Sep 7, 2024
1 parent 9786653 commit bcf412d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig<Credentials>({
timeout: 30 * 1000,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
reporter: [['html', { open: 'never' }]],
use: {
baseURL: 'http://localhost:5173',
trace: 'on-first-retry',
Expand Down

0 comments on commit bcf412d

Please sign in to comment.