C
CanxJS
v1.6.2
  • Learn
  • Blog
  • Showcase
C
CanxJS

Ultra-fast async MVC backend framework for Bun. Build production-ready APIs with elegance and speed.

Resources

  • Documentation
  • Learn
  • Blog
  • Showcase

Documentation

  • Introduction
  • Installation
  • Core Concepts
  • CLI Commands
  • API Reference

Legal

  • Privacy Policy
  • Terms of Service

© 2026 CanxJS. All rights reserved.

Built with ❤️ for Candra Kirana

  • Installation
  • Writing Tests
  • Browser Testing

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"]
  }
}