Skip to content

Commit

Permalink
run chromium only for everything but foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt committed Oct 11, 2023
1 parent bba1f9f commit 7f779b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ export default {
playwright: true,
browsers: [
playwrightLauncher({ product: "chromium" }),
playwrightLauncher({ product: "firefox" }),
playwrightLauncher({ product: "webkit" }),
],
files: [
"dist/esm/**/*.spec.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ export default {
nodeResolve: true,
// in a monorepo you need to set set the root dir to resolve modules
rootDir: "../../../",
playwright: true,
browsers: [
playwrightLauncher({ product: "chromium" }),
],
files: [
"dist/**/*.spec.js",
"!**/node_modules/**"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ export default {
playwright: true,
browsers: [
playwrightLauncher({ product: "chromium" }),
playwrightLauncher({ product: "firefox" }),
playwrightLauncher({ product: "webkit" }),
],
files: [
"dist/esm/**/*.spec.js",
Expand Down

0 comments on commit 7f779b6

Please sign in to comment.