79466836

Date: 2025-02-25 14:14:51
Score: 0.5
Natty:
Report link

I had similar issue today while doing playwright training course...my tests were running twice! It took me sometime before to realise I had 2 'chromium' settings under projects (probably bad copy-paste😅) double-check your 'playwright.config.ts' file to make sure you haven't line duplicated by error as below

projects: [
{
  name: 'chromium',
  use: { ...devices['Desktop Chrome'] },
},

{
  name: 'chromium',
  use: { ...devices['Desktop Chrome'] }, 
},

{
  name: 'webkit',
  use: { ...devices['Desktop Safari'] },
},
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dalila