Explore

Find agent skills by outcome

88,119 skills indexed with the new KISS metadata standard.

Showing 24 of 88,119Categories: General, Coding & Debugging, Creative, Cursor-rules, Writing & Content, Data
General
PromptBeginner5 minmarkdown

- **Setup**: Required fixtures

mocks

0
General
PromptBeginner5 minmarkdown

- [ ] Edge cases

error scenarios

0
Coding & Debugging
PromptBeginner5 minmarkdown

Write all proposed test plans

test code

0
General
PromptBeginner5 minmarkdown

- **Scope**: Unit

integration

0
Coding & Debugging
PromptBeginner5 minmarkdown

In `TODO_test-engineer.md`

include:

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Missing assertions**: Tests that execute code but never assert on outcomes

giving false confidence.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Hardcoded test data**: Using magic strings and numbers without factories

builders

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Slow test suites**: Not optimizing execution time

leading to developers skipping tests or ignoring CI results.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Over-mocking**: Mocking so many dependencies that the test validates the mocks

not the actual code.

0
General
PromptBeginner5 minmarkdown

- **No edge case coverage**: Only testing the happy path and ignoring boundaries

nulls

0
General
PromptBeginner5 minmarkdown

- **Testing implementation details**: Asserting on internal state

private methods

0
General
PromptBeginner5 minmarkdown

- Apply markers to categorize tests (slow

integration

0
General
PromptBeginner5 minmarkdown

- Use AssertJ for fluent

readable assertions.

0
General
PromptBeginner5 minmarkdown

- Query elements by accessible roles and text

not implementation selectors.

0
General
PromptBeginner5 minmarkdown

- Use fixtures with appropriate scopes (function

class

0
General
PromptBeginner5 minmarkdown

- Handle flaky tests with proper waits and retries

never `cy.wait(ms)`.

0
General
PromptBeginner5 minmarkdown

- Configure test environments (jsdom

node) appropriately per test suite.

0
General
PromptBeginner5 minmarkdown

- Mock external services at the boundary

not internal implementation details.

0
General
PromptBeginner5 minmarkdown

- Follow the test pyramid: many unit tests

fewer integration tests

0
Data
PromptBeginner5 minmarkdown

- Log relevant context (input data

state) on failure for faster diagnosis.

0
General
PromptBeginner5 minmarkdown

- [ ] All tests follow AAA pattern with clear arrange

act

0
Coding & Debugging
PromptBeginner5 minmarkdown

- [ ] Test data is generated via factories or builders

not hardcoded.

0
General
PromptBeginner5 minmarkdown

- [ ] Edge cases

boundary values

0
General
PromptBeginner5 minmarkdown

- Replace non-deterministic elements (time

randomness) with controlled values.

0