Skip to content

Commit 603057d

Browse files
annervisserrenovate[bot]
authored andcommitted
Fix formatting
1 parent 1cc20f6 commit 603057d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

e2e-test/playwright.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
import type { PlaywrightTestConfig } from '@playwright/test';
1+
import { defineConfig } from '@playwright/test';
22

33
/** See https://playwright.dev/docs/test-configuration. */
4-
const config: PlaywrightTestConfig = {
4+
export default defineConfig({
55
use: {
66
baseURL: process.env.BASE_URL ?? 'http://localhost:7681/',
77
trace: 'retain-on-failure',
8+
browserName: 'chromium',
89
},
910
testDir: './tests',
1011
fullyParallel: true,
@@ -13,5 +14,4 @@ const config: PlaywrightTestConfig = {
1314
['html', process.env.DOCKER ? { host: '0.0.0.0' } : {}],
1415
process.env.CI ? ['github'] : ['list'],
1516
],
16-
};
17-
export default config;
17+
});

e2e-test/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"moduleResolution": "node",
66
"baseUrl": ".",
77
"paths": {
8-
"@helpers/*": ["./helpers/*"]
8+
"@helpers/*": ["./helpers/*"],
99
},
1010
"strict": true,
1111
"strictPropertyInitialization": true,
@@ -15,6 +15,6 @@
1515
"noImplicitAny": true,
1616
"noImplicitReturns": true,
1717
"noImplicitOverride": true,
18-
"noUncheckedIndexedAccess": true
19-
}
18+
"noUncheckedIndexedAccess": true,
19+
},
2020
}

0 commit comments

Comments
 (0)