deploy: hr-panel-v3-designs
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { defineConfig, devices } from '@playwright/test';
|
||||
|
||||
export default defineConfig({
|
||||
testDir: './tests',
|
||||
outputDir: './test-results',
|
||||
timeout: 30000,
|
||||
retries: 0,
|
||||
use: {
|
||||
headless: true,
|
||||
launchOptions: {
|
||||
executablePath: '/usr/bin/chromium',
|
||||
},
|
||||
screenshot: 'on',
|
||||
trace: 'off',
|
||||
},
|
||||
projects: [
|
||||
{ name: 'mobile', use: { ...devices['iPhone 12'] } },
|
||||
{ name: 'tablet', use: { viewport: { width: 768, height: 1024 } } },
|
||||
{ name: 'desktop', use: { viewport: { width: 1440, height: 900 } } },
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user