end-to-end-testsClaude Skill
after making changes, run end-to-end tests to ensure that the product still works
| name | end-to-end-tests |
| description | after making changes, run end-to-end tests to ensure that the product still works |
| allowed-tools | make, go |
End-to-end tests
Instructions
When you are done making changes, run all end-to-end tests through this command:
make cuke
If the exit code is 1, read the error messages and fix all errors, then re-run the end-to-end tests until they run successfully and exit with code 0.
End-to-end tests are defined in the "features" folder. They are written in the Gherkin language and execute using Cucumber for Go.
If an end-to-end test fails, you can re-run only this test to verify that your fix works:
- Add the
@debug @thistag to a specific scenario - Run
make cukethisto execute only the tagged scenario - when the test passes, remove the
@debug @thistags
Similar Claude Skills & Agent Workflows
test-coverage-improver
Improve test coverage in the OpenAI Agents Python repository: run `make coverage`, inspect coverage artifacts, identify low-coverage files, propose high-impact tests, and confirm with the user before writing tests.
code-change-verification
Run the mandatory verification stack when changes affect runtime code, tests, or build/test behavior in the OpenAI Agents Python repository.
testing-python
Write and evaluate effective Python tests using pytest.
testing
Run and troubleshoot tests for DBHub, including unit tests, integration tests with Testcontainers, and database-specific tests.
n8n-validation-expert
Interpret validation errors and guide fixing them.
web-design-guidelines
Review UI code for Web Interface Guidelines compliance.