npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@verex/runner

v1.2.0

Published

Run Verex.ai test suites from any CI/CD pipeline

Downloads

310

Readme

Verex Test Runner

npm version Tests License

A flexible NPM package for running Verex.ai test suites from any CI/CD pipeline, including GitHub Actions, GitLab CI, and Bitbucket Pipelines.

Features

  • Compatible with multiple CI/CD platforms (GitHub Actions, GitLab CI, Bitbucket Pipelines)
  • Automatic environment detection
  • Configuration via environment variables, CLI arguments, or code
  • Real-time test status updates
  • Detailed test result reporting

Installation

Global Installation (recommended for CLI usage)

npm install -g @verex/runner

This allows you to run verex-runner directly from anywhere.

Local Installation

npm install @verex/runner

Usage

Command Line Interface

If installed globally:

# Basic usage
verex-runner --api-key YOUR_API_KEY --test-suite-id YOUR_TEST_SUITE_ID

# With additional options
verex-runner \
  --api-key YOUR_API_KEY \
  --test-suite-id YOUR_TEST_SUITE_ID \
  --test-base-url https://your-app-domain.com \
  --max-poll-attempts 120 \
  --poll-interval-seconds 5 \
  --debug

In Node.js

const { runTests, runTestsWithAutoDetection } = require('@verex/runner');

// Auto-detect CI environment and run tests
async function runMyTests() {
  try {
    const results = await runTestsWithAutoDetection({
      apiKey: 'YOUR_API_KEY',
      testSuiteId: 'YOUR_TEST_SUITE_ID',
      testBaseUrl: 'https://your-app-domain.com'
    });
    
    console.log('Tests completed with status:', results.status);
    console.log(`${results.passed}/${results.totalTests} tests passed`);
    
    // Exit with error code if any tests failed
    if (results.hasFailed) {
      process.exit(1);
    }
  } catch (error) {
    console.error('Error running tests:', error);
    process.exit(1);
  }
}

runMyTests();

GitHub Actions

name: Verex Tests

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      
      - name: Setup Node.js
        uses: actions/setup-node@v3
        with:
          node-version: '16'
          
      - name: Install dependencies
        run: npm ci
      
      - name: Run Verex Tests
        run: npx @verex/runner
        env:
          API_KEY: ${{ secrets.VEREX_API_KEY }}
          TEST_SUITE_ID: ${{ secrets.VEREX_TEST_SUITE_ID }}
          TEST_BASE_URL: https://staging.your-app.com
          DEBUG: true

GitLab CI

stages:
  - test

verex-tests:
  stage: test
  image: node:16-alpine
  script:
    - npm install -g @verex/runner
    - verex-runner
  variables:
    VEREX_API_KEY: $VEREX_API_KEY
    VEREX_TEST_SUITE_ID: $VEREX_TEST_SUITE_ID
    VEREX_TEST_BASE_URL: https://staging.your-app.com
    VEREX_DEBUG: "true"

Bitbucket Pipelines

pipelines:
  default:
    - step:
        name: Run Verex Tests
        image: node:16-alpine
        script:
          - npm install -g @verex/runner
          - verex-runner
        variables:
          VEREX_API_KEY: $VEREX_API_KEY
          VEREX_TEST_SUITE_ID: $VEREX_TEST_SUITE_ID
          VEREX_TEST_BASE_URL: https://staging.your-app.com
          VEREX_DEBUG: "true"

Configuration Options

| Option | Environment Variable | CLI Argument | Description | |--------|---------------------|--------------|-------------| | API Key | API_KEY (GitHub)VEREX_API_KEY (others) | --api-key | Verex API key | | Test Suite ID | TEST_SUITE_ID (GitHub)VEREX_TEST_SUITE_ID (others) | --test-suite-id | Test suite ID to run | | Test Base URL | TEST_BASE_URL (GitHub)VEREX_TEST_BASE_URL (others) | --test-base-url | Base URL for tests | | API Base URL | API_BASE_URL (GitHub)VEREX_API_BASE_URL (others) | --api-base-url | Verex API base URL | | Max Poll Attempts | MAX_POLL_ATTEMPTS (GitHub)VEREX_MAX_POLL_ATTEMPTS (others) | --max-poll-attempts | Maximum number of polling attempts | | Poll Interval | POLL_INTERVAL_SECONDS (GitHub)VEREX_POLL_INTERVAL_SECONDS (others) | --poll-interval-seconds | Interval between polling attempts in seconds | | Debug Mode | DEBUG (GitHub)VEREX_DEBUG (others) | --debug | Enable debug logging |

License

MIT