Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    novuhq

    run-api-e2e-tests

    novuhq/run-api-e2e-tests
    Coding
    38,529
    2 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Run e2e tests for the API service. Use when the user wants to run API E2E tests.

    SKILL.md

    Run API E2E Tests

    Run novu-v2 e2e tests for the API service. Tests are located in apps/api.

    Running All Tests

    pnpm test:e2e:novu-v2
    

    This runs all e2e tests with the novu-v2 pattern across both regular and enterprise test suites.

    Running a Specific Test

    When the user mentions a specific test or feature:

    1. Find the test file using Glob with pattern *.e2e.ts or *.e2e-ee.ts in apps/api
    2. Extract the filename (without extension) - e.g., trigger-event-preferences.e2e.ts → trigger-event-preferences
    3. Determine the test location:
      • Check if the test is in src/ or e2e/enterprise/
    4. Run the appropriate command based on test location:

    For tests in src/ directory:

    pnpm exec cross-env NODE_ENV=test CI_EE_TEST=true CLERK_ENABLED=true NODE_OPTIONS=--max_old_space_size=8192 mocha --timeout 30000 --retries 3 --grep '#novu-v2' --require ./swc-register.js --exit --file e2e/setup.ts 'src/**/<name-of-the-test>.e2e{,-ee}.ts'
    

    For tests in e2e/enterprise/ directory:

    pnpm exec cross-env NODE_ENV=test CI_EE_TEST=true CLERK_ENABLED=true NODE_OPTIONS=--max_old_space_size=8192 mocha --timeout 30000 --retries 3 --grep '#novu-v2' --require ./swc-register.js --exit --file e2e/setup.ts 'e2e/enterprise/**/<name-of-the-test>.e2e.ts'
    

    Replace <name-of-the-test> with the actual test filename (without extension).

    Examples

    Running trigger-event-preferences test (in src/):

    # Found: apps/api/src/app/events/e2e/trigger-event-preferences.e2e.ts
    pnpm exec cross-env NODE_ENV=test CI_EE_TEST=true CLERK_ENABLED=true NODE_OPTIONS=--max_old_space_size=8192 mocha --timeout 30000 --retries 3 --grep '#novu-v2' --require ./swc-register.js --exit --file e2e/setup.ts 'src/**/trigger-event-preferences.e2e{,-ee}.ts'
    

    Running enterprise billing test:

    # Found: apps/api/e2e/enterprise/billing/billing.e2e.ts
    pnpm exec cross-env NODE_ENV=test CI_EE_TEST=true CLERK_ENABLED=true NODE_OPTIONS=--max_old_space_size=8192 mocha --timeout 30000 --retries 3 --grep '#novu-v2' --require ./swc-register.js --exit --file e2e/setup.ts 'e2e/enterprise/**/billing.e2e.ts'
    

    Important Notes

    • Always run commands from apps/api directory
    • For specific tests, use the full mocha command (not pnpm script) to target the exact test file
    • Report test results clearly to the user
    Recommended Servers
    Postman
    Postman
    Codeinterpreter
    Codeinterpreter
    Repository
    novuhq/novu
    Files