一键导入
test
// Run Playwright tests for a specific integration (standalone, standalone-browser, theia, or vscode). Handles full environment setup including repo preparation and .env generation. Usage - /test standalone, /test theia, or /test vscode.
// Run Playwright tests for a specific integration (standalone, standalone-browser, theia, or vscode). Handles full environment setup including repo preparation and .env generation. Usage - /test standalone, /test theia, or /test vscode.
Generate changelog entries from merged PRs since the last release. Fetches PR data, classifies changes as normal or breaking, presents for user review, and optionally creates a PR with the updates.
Run full project validation (build,lint, format, copyright headers) to catch issues before committing. IMPORTANT - Proactively invoke this skill after completing any code changes (new features, bug fixes, refactors) before reporting completion to the user.
| name | test |
| description | Run Playwright tests for a specific integration (standalone, standalone-browser, theia, or vscode). Handles full environment setup including repo preparation and .env generation. Usage - /test standalone, /test theia, or /test vscode. |
Run Playwright tests for the specified integration. Handles environment setup, compilation, and test execution.
$ARGUMENTS should be one of: standalone, standalone-browser, theia, vscode, or empty (runs all integrations).
If $ARGUMENTS contains a specific test name pattern, run tests filtered by that pattern.
Always run the setup script unless the user explicitly says to skip it:
yarn repo:setup
This will clone and build the required GLSP repositories and generate the .env file from .env.example.
Ensure the project is compiled:
yarn
Run the appropriate test command:
yarn test (runs all integrations)yarn test:standaloneyarn test:standalone-browseryarn test:theiayarn test:vscode$ARGUMENTS contains a specific test name pattern, run: cd examples/workflow-test && yarn playwright test -g "$ARGUMENTS"If tests fail, read the Playwright HTML report or error output and summarize failures with actionable suggestions.