- Restructure SAM rough mask workflow for sidebar preview - Add playwright tests for SAM workflow - Add ORA files for forest path and graveyard rooms - Update playwright config with trace on retry
16 lines
292 B
TypeScript
16 lines
292 B
TypeScript
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'] },
|
|
},
|
|
],
|
|
});
|