Skip to content

Commit

Permalink
test: remove webkit & firefox
Browse files Browse the repository at this point in the history
- firefox has a tendency to hang, which makes testing difficult
- safari has some support differences which make initial test creation a bit less convenient

I'd like to re-add both these once vitest's browser mode is a bit more stable & most of restyle's tests are passing
  • Loading branch information
RJWadley committed Feb 6, 2025
1 parent 9e6c597 commit fc745a8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ export default defineConfig({
provider: 'playwright',
headless: true,
screenshotFailures: false,
instances: [
{ browser: 'chromium' },
{ browser: 'firefox' },
{ browser: 'webkit' },
],
instances: [{ browser: 'chromium' }],
},
},
})

0 comments on commit fc745a8

Please sign in to comment.