Skip to content

Commit

Permalink
replace chromium with edge everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Müller committed Nov 26, 2024
1 parent 87a03bb commit f9ebc49
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/docs/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default defineConfig({
},
/* Configure projects for major browsers */
projects: [
{ name: "chromium", use: { ...devices["Desktop Chrome"] } },
{ name: "edge", use: { ...devices["Desktop Edge"], channel: "msedge" } },
{ name: "firefox", use: { ...devices["Desktop Firefox"] } },
{ name: "webkit", use: { ...devices["Desktop Safari"] } },
],
Expand Down
2 changes: 1 addition & 1 deletion apps/playground/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineConfig({
},
/* Configure projects for major browsers */
projects: [
{ name: "chromium", use: { ...devices["Desktop Chrome"] } },
{ name: "edge", use: { ...devices["Desktop Edge"], channel: "msedge" } },
{ name: "firefox", use: { ...devices["Desktop Firefox"] } },
{ name: "webkit", use: { ...devices["Desktop Safari"] } },
],
Expand Down
2 changes: 1 addition & 1 deletion packages/chartjs-plugin/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ export default defineConfig({
projects: [
// one browser is sufficient for the screenshot tests
// since its responsibility of Chart.js itself to be cross-browser compatible
{ name: "chromium", use: { ...devices["Desktop Chrome"] } },
{ name: "edge", use: { ...devices["Desktop Edge"], channel: "msedge" } },
],
});
5 changes: 1 addition & 4 deletions packages/headless/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ export default defineConfig({

/* Configure projects for major browsers */
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
{ name: "edge", use: { ...devices["Desktop Edge"], channel: "msedge" } },
{
name: "firefox",
use: { ...devices["Desktop Firefox"] },
Expand Down

0 comments on commit f9ebc49

Please sign in to comment.