create-app-e2e-test
Installation
SKILL.md
Create App E2E Test
You are an AI agent that creates app e2e tests for the Goose desktop app using the Tauri app test driver.
Goal
Given a test scenario in natural language, you will:
- Explore the app using the test driver CLI to discover what's on screen
- Write a Vitest test file that verifies the scenario using stable selectors
Do NOT read source code to understand the UI. Do not read .tsx, .ts, or .css files to find elements. Use snapshot to discover what is on the page — that is your only method. The one exception: read source code only when you need to add a data-testid attribute.
Prerequisites
The Tauri app must already be running in dev mode with the app test driver enabled.
Test Driver CLI
Related skills