Skip to content

Commit 1c96a26

Browse files
remove boilterplate comments from playwright config files
1 parent 0282a29 commit 1c96a26

File tree

3 files changed

+0
-81
lines changed

3 files changed

+0
-81
lines changed

examples/api/e2e/playwright.config.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ import { defineConfig, devices } from "@playwright/test";
22

33
declare var process: { env: Record<string, string> };
44

5-
/**
6-
* Read environment variables from file.
7-
* https://github.com/motdotla/dotenv
8-
*/
9-
// import dotenv from 'dotenv';
10-
// dotenv.config({ path: path.resolve(__dirname, '.env') });
11-
125
/**
136
* See https://playwright.dev/docs/test-configuration.
147
*/
@@ -49,26 +42,6 @@ export default defineConfig({
4942
name: "webkit",
5043
use: { ...devices["Desktop Safari"] },
5144
},
52-
53-
/* Test against mobile viewports. */
54-
// {
55-
// name: 'Mobile Chrome',
56-
// use: { ...devices['Pixel 5'] },
57-
// },
58-
// {
59-
// name: 'Mobile Safari',
60-
// use: { ...devices['iPhone 12'] },
61-
// },
62-
63-
/* Test against branded browsers. */
64-
// {
65-
// name: 'Microsoft Edge',
66-
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
67-
// },
68-
// {
69-
// name: 'Google Chrome',
70-
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
71-
// },
7245
],
7346

7447
/* Run your local dev server before starting the tests */

examples/api/e2e/playwright.dev.config.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ import { defineConfig, devices } from "@playwright/test";
22

33
declare var process: { env: Record<string, string> };
44

5-
/**
6-
* Read environment variables from file.
7-
* https://github.com/motdotla/dotenv
8-
*/
9-
// import dotenv from 'dotenv';
10-
// dotenv.config({ path: path.resolve(__dirname, '.env') });
11-
125
/**
136
* See https://playwright.dev/docs/test-configuration.
147
*/
@@ -49,26 +42,6 @@ export default defineConfig({
4942
name: "webkit",
5043
use: { ...devices["Desktop Safari"] },
5144
},
52-
53-
/* Test against mobile viewports. */
54-
// {
55-
// name: 'Mobile Chrome',
56-
// use: { ...devices['Pixel 5'] },
57-
// },
58-
// {
59-
// name: 'Mobile Safari',
60-
// use: { ...devices['iPhone 12'] },
61-
// },
62-
63-
/* Test against branded browsers. */
64-
// {
65-
// name: 'Microsoft Edge',
66-
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
67-
// },
68-
// {
69-
// name: 'Google Chrome',
70-
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
71-
// },
7245
],
7346

7447
/* Run your local dev server before starting the tests */

examples/create-next-app/e2e/playwright.config.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ import { defineConfig, devices } from "@playwright/test";
22

33
declare const process: { env: Record<string, string> };
44

5-
/**
6-
* Read environment variables from file.
7-
* https://github.com/motdotla/dotenv
8-
*/
9-
// import dotenv from 'dotenv';
10-
// dotenv.config({ path: path.resolve(__dirname, '.env') });
11-
125
/**
136
* See https://playwright.dev/docs/test-configuration.
147
*/
@@ -49,26 +42,6 @@ export default defineConfig({
4942
name: "webkit",
5043
use: { ...devices["Desktop Safari"] },
5144
},
52-
53-
/* Test against mobile viewports. */
54-
// {
55-
// name: 'Mobile Chrome',
56-
// use: { ...devices['Pixel 5'] },
57-
// },
58-
// {
59-
// name: 'Mobile Safari',
60-
// use: { ...devices['iPhone 12'] },
61-
// },
62-
63-
/* Test against branded browsers. */
64-
// {
65-
// name: 'Microsoft Edge',
66-
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
67-
// },
68-
// {
69-
// name: 'Google Chrome',
70-
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
71-
// },
7245
],
7346

7447
/* Run your local dev server before starting the tests */

0 commit comments

Comments
 (0)