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