smoke-test | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / smoke-test

smoke-test

maintained by everruns

star 2 account_tree 0 verified_user MIT License
bolt View GitHub

name: smoke-test description: Run smoke tests to verify the Everruns system works correctly.

Smoke Tests

Verify the system is working after changes.

Quick Start

# Start server (no Docker needed, --no-watch for faster startup)
just start-dev --no-watch

# Run tests
cargo test

Checklist

1. Start Server

just start-dev --no-watch  # In-memory, no Docker, fast startup
# or: just start-all --no-watch  # With PostgreSQL persistence

2. Health Check

curl -s http://localhost:9000/health | jq
# Expected: {"status": "ok", ...}

3. Run Tests

# All tests (unit + integration, includes tool calling tests)
cargo test --all-features

# Integration tests only (requires server running)
cargo test -p everruns-server --test integration_test -- --test-threads=1

# Durable engine tests
cargo test -p everruns-durable --lib

Integration tests cover: API endpoints, tool calling (OpenAI/Anthropic/LLMSim), events, sessions, capabilities.

4. UI Check

curl -s -o /dev/null -w "%{http_code}" http://localhost:9100
# Expected: 200 or 307

5. API Endpoint Test

ORG="org_00000000000000000000000000000001"

# Create agent
curl -s -X POST "http://localhost:9000/v1/agents" \
  -H "Content-Type: application/json" \
  -d '{"name": "Test", "system_prompt": "You are helpful."}' | jq '.id'

Full API Reference

See http://localhost:9000/swagger-ui/ for complete API documentation.

Troubleshooting

# Check ports
lsof -i :9000  # API
lsof -i :9100  # UI

# View logs (DEV MODE runs in foreground)
# Ctrl+C to stop, then restart with: just start-dev

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 2
GitHub Forks 0
Created Jan 2026
Last Updated 5 months ago
tools tools productivity tools

Related Skills

ai-sdk

ai-sdk

vercel
star 22.3k
chevron_right
planning-with-files
chevron_right
agent-browser
chevron_right
ui-skills
chevron_right
biomni
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.