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
This commit is contained in:
2026-03-28 15:04:49 -07:00
parent 7c9a25dd91
commit 3fc5e9f215
9 changed files with 310 additions and 31 deletions

View File

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