flurry-cli
v0.0.3
Published
Flurry CLI
Readme
Flurry

A command-line interface for running Flurry API testing collections.
Required Options
--collection-id- The collection ID to run--api-key- Your API key for authentication--environment- The environment name to use
Optional Options
--run-flow-id- Run a single flow by ID (runs entire collection if not specified)--verbose- Set to true for detailed output (default: false)--fail-fast- Stop immediately on first assertion failure (default: true). Set to false to continue running all tests--help,-h- Show help message and exit
Examples
Run entire collection
npx flurry-cli --collection-id=abc123 --api-key=your-api-key --environment=developmentRun specific flow with verbose output
npx flurry-cli --collection-id=abc123 --api-key=your-api-key --environment=staging --run-flow-id=flow456 --verbose=trueRun collection without fail-fast (continue on assertion failures)
npx flurry-cli --collection-id=abc123 --api-key=your-api-key --environment=development --fail-fast=false