Installation
Get started with testingcanxjs for robust integration testing.
Install Package
Install the testing suite as a development dependency.
bash
npm install -D testingcanxjsOr with Bun:
bash
bun add -d testingcanxjsConfiguration
Ensure your tsconfig.json is configured to support Bun types, as the testing suite relies on the Bun test runner.
json
{
"compilerOptions": {
"types": ["bun"]
}
}