What problem does it solve?
This Skill helps development teams create reliable Playwright-based end-to-end tests for tldraw, improving UI confidence and regression coverage.
Core Features & Use Cases
- Test File Structure: Organizes tests under apps/examples/e2e/ and apps/dotcom/client/e2e/ with fixtures, page objects, tests, and shared utilities.
- Test authoring patterns: Demonstrates standard test structure, setup patterns, and data-driven examples to cover common UI interactions.
- Use Case: When adding UI or interaction coverage to an SDK or web app, use this Skill to scaffold consistent E2E tests and verification flows.
Quick Start
Start by reviewing existing e2e examples in apps/examples/e2e/, then create a new test spec under apps/examples/e2e/tests/ using the pattern test.describe/ test('name', ...) and place supporting fixtures under apps/examples/e2e/fixtures.