set Playwright test to utilize webkit

This commit is contained in:
mahula 2022-07-18 22:28:31 +02:00
parent e8bcda810a
commit a04610153b

View File

@ -14,6 +14,8 @@ const config: PlaywrightTestConfig = {
viewport: { width: 1280, height: 720 },
use: {
baseURL: process.env.URL || 'http://localhost:3000',
browserName: 'webkit',
},
};
export default config;