Skip to content

Commit

Permalink
fix: filter browsers after applying string transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Feb 18, 2022
1 parent 62d7974 commit c9e2fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/jest-playwright.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export const getJestConfig = () => {
testEnvironmentOptions: {
'jest-playwright': {
browsers: TEST_BROWSERS.split(',')
.filter(Boolean)
.map((p) => p.trim().toLowerCase()),
.map((p) => p.trim().toLowerCase())
.filter(Boolean),
},
},
};
Expand Down

0 comments on commit c9e2fe2

Please sign in to comment.