Skip to content

Commit c25e147

Browse files
committed
Update test directory and enable Firefox and Webkit browsers
1 parent 8c65253 commit c25e147

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
File renamed without changes.

playwright.config.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { defineConfig, devices } from '@playwright/test';
1010
* See https://playwright.dev/docs/test-configuration.
1111
*/
1212
export default defineConfig({
13-
testDir: './tests',
13+
testDir: './e2e',
1414
/* Run tests in files in parallel */
1515
fullyParallel: true,
1616
/* Fail the build on CI if you accidentally left test.only in the source code. */
@@ -37,15 +37,15 @@ export default defineConfig({
3737
use: { ...devices['Desktop Chrome'] },
3838
},
3939

40-
// {
41-
// name: 'firefox',
42-
// use: { ...devices['Desktop Firefox'] },
43-
// },
40+
{
41+
name: 'firefox',
42+
use: { ...devices['Desktop Firefox'] },
43+
},
4444

45-
// {
46-
// name: 'webkit',
47-
// use: { ...devices['Desktop Safari'] },
48-
// },
45+
{
46+
name: 'webkit',
47+
use: { ...devices['Desktop Safari'] },
48+
},
4949

5050
/* Test against mobile viewports. */
5151
// {

0 commit comments

Comments
 (0)