Installation

Get started with testingcanxjs for robust integration testing.

Install Package

Install the testing suite as a development dependency.

bash
npm install -D testingcanxjs

Or with Bun:

bash
bun add -d testingcanxjs

Configuration

Ensure your tsconfig.json is configured to support Bun types, as the testing suite relies on the Bun test runner.

json
{
  "compilerOptions": {
    "types": ["bun"]
  }
}