2026-03-03 09:46:35 +00:00
|
|
|
# Testen
|
|
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## Übersicht
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
| Type | Framework | Command | Location |
|
|
|
|
|
|------|-----------|---------|----------|
|
|
|
|
|
| E2E visual regression | Playwright | `bun run test` | `tests/e2e/` |
|
|
|
|
|
| Figma CDP reference | Playwright | `bun run test:figma` | `tests/figma/` |
|
|
|
|
|
| Unit tests | bun:test | `bun run test:unit` | `tests/engine/` |
|
|
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## E2E Visuelle Regression
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
```sh
|
2026-03-03 09:57:17 +00:00
|
|
|
bun run test # Compare against baselines
|
|
|
|
|
bun run test:update # Regenerate baselines
|
2026-03-03 09:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
1. Playwright → headless browser
|
|
|
|
|
2. `data-ready` HTML attribute
|
|
|
|
|
3. Create shapes → screenshot → `toMatchSnapshot`
|
2026-03-03 09:46:35 +00:00
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## Figma CDP-Referenztests
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
bun run figma:debug # Launch Figma with debugging port
|
2026-03-03 09:57:17 +00:00
|
|
|
bun run test:figma # Connect via CDP
|
2026-03-03 09:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## Unit-Tests
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
bun run test:unit
|
|
|
|
|
```
|
|
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
- Scene graph CRUD, hit testing
|
|
|
|
|
- Fig-import pipeline
|
|
|
|
|
- Layout computation (Yoga)
|
|
|
|
|
- MCP server edge cases
|
2026-03-03 09:46:35 +00:00
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## E2E-Testabdeckung
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
| Test file | Scope |
|
|
|
|
|
|-----------|-------|
|
2026-03-03 09:57:17 +00:00
|
|
|
| `tests/e2e/layers-panel.spec.ts` | Layers panel |
|
|
|
|
|
| `tests/e2e/visual.spec.ts` | Visual regression |
|
2026-03-03 09:46:35 +00:00
|
|
|
|
2026-03-03 09:57:17 +00:00
|
|
|
## Leistungsziele
|
2026-03-03 09:46:35 +00:00
|
|
|
|
|
|
|
|
| Metric | Target |
|
|
|
|
|
|--------|--------|
|
2026-03-03 09:57:17 +00:00
|
|
|
| E2E suite | < 3s |
|
|
|
|
|
| Unit tests | < 50ms |
|