import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests/playwright', timeout: 30000, use: { browserName: 'chromium', }, projects: [ { name: 'ora-editor', use: { ...devices['Desktop Chromium'] }, }, ], });