chore(create-playwright): add stable channels to example config (#10514)

This commit is contained in:
Max Schmitt 2021-11-24 21:50:29 +01:00 committed by GitHub
parent 7eb3f76f49
commit c08bb427cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 2 deletions

View File

@ -53,7 +53,22 @@ const config = {
// },
// {
// name: 'Mobile Safari',
// use: devices['iPhone 12'],
// use: {
// ...devices['iPhone 12'],
// },
// },
/* Test against stable browsers. */
// {
// name: 'Microsoft Edge',
// use: {
// channel: 'msedge',
// },
// },
// {
// name: 'Google Chrome',
// use: {
// channel: 'chrome',
// },
// },
],
};

View File

@ -49,7 +49,22 @@ const config: PlaywrightTestConfig = {
// },
// {
// name: 'Mobile Safari',
// use: devices['iPhone 12'],
// use: {
// ...devices['iPhone 12'],
// },
// },
/* Test against stable browsers. */
// {
// name: 'Microsoft Edge',
// use: {
// channel: 'msedge',
// },
// },
// {
// name: 'Google Chrome',
// use: {
// channel: 'chrome',
// },
// },
],
};