Socket
Book a DemoInstallSign in
Socket

@saasquatch/program-test-suite

Package Overview
Dependencies
Maintainers
11
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@saasquatch/program-test-suite

A collection of utilities for creating program unit tests

latest
Source
npmnpm
Version
2.6.1-0
Version published
Maintainers
11
Created
Source

SaaSquatch Program Test Suite

This package contains everything needed to facilitate blackbox unit testing of the SaaSquatch programs. It includes a family of default Cucumber step definitions and tools for simulated execution of the programs.

Installation

npm install -D @saasquatch/program-test-suite

Usage

The program test suite is based on Jest. Place the following inside your Jest config:

import { jestConfig } from "@saasquatch/program-test-suite";
export default jestConfig;

Use the runProgramTests function to execute the tests. Here is an example of a typical test program:

// Import your program from the source code. This is a `types.rpc.Program` that you would
// pass to program-boilerplate
import { program } from "../src/program";
import { runProgramTests } from "@saasquatch/program-test-suite";

// Any additional custom steps you need for this particular program
import steps from "./steps";

runProgramTests(
  program,
  // Path to the .feature files containing the unit test steps
  "__tests__/features/unit",
  steps,
  // Path to the program schema
  "src/schema/birthday-program_schema.json",
  // Default program template and program rules to use while testing
  "__tests__/defaults/template.json",
  "__tests__/defaults/rules.json"
);

FAQs

Package last updated on 13 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts