Files
ai-game-2/playwright.config.ts
Bryce 3fc5e9f215 Add SAM rough mask workflow with sidebar preview and tests
- 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
2026-03-28 15:04:49 -07:00

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'] },
},
],
});