
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@saasquatch/program-test-suite
Advanced tools
A collection of utilities for creating program unit tests
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.
npm install -D @saasquatch/program-test-suite
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
A collection of utilities for creating program unit tests
We found that @saasquatch/program-test-suite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.