원클릭으로
test
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run the test suite. Use when running tests, checking test results, or when the user asks to test code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Search OLX.pt listings, track prices, and detect deals. Use for finding products, monitoring prices, and getting alerts on good deals in Portugal and other OLX regions.
Create a new filter for the tracker system. Use when adding custom filtering logic or when the user asks to create a filter.
Create a new notification backend (e.g., Telegram, Email, Slack). Use when adding custom notification channels.
Build the olx-tracker project. Use when compiling the project or when the user asks to build.
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
| name | test |
| description | Run the test suite. Use when running tests, checking test results, or when the user asks to test code. |
| argument-hint | ["test-name or --coverage"] |
| allowed-tools | Bash(cargo *) |
Execute the test suite for olx-tracker.
# Run all tests
cargo test
# Run specific test
cargo test $ARGUMENTS
# Run tests with output
cargo test -- --nocapture
# Run only lib tests (faster)
cargo test --lib
When $ARGUMENTS contains "--coverage" or "coverage", run coverage report:
# Check if tarpaulin is installed, install if needed
which cargo-tarpaulin || cargo install cargo-tarpaulin
# Run coverage
cargo tarpaulin --out Stdout --engine llvm
Current coverage: ~65% overall, with high coverage in core modules:
All 201 tests should pass (as of Jan 2026).
All tests are properly mocked - NO real OLX API calls are made during testing.