Welcome! Are you writing JavaScript tests and in the market for a mocking library to fake out real things for you? testdouble.js is an opinionated, carefully-designed test double library maintained by, oddly enough, a software agency that's also named Test Double.
If you practice test-driven development, testdouble.js was designed to promote terse, clear, and easy-to-understand tests. There's an awful lot to cover, so please take some time and enjoy our documentation, which itself is designed to show you how to make the most out of test doubles in your tests.
Interested in learning what testdouble.js is, why it exists, and what the API offers? The quickest path is this fast-paced 20-minute talk:
Right now, Sinon.js is the test double incumbent in JavaScript, with over 1.7 million downloads in the last month. If you've got experience with Sinon, check out our side-by-side comparison to see why we wrote testdouble.js and how some of the API translates.
Before diving into our in-depth docs, here is a quick intro of the basic uses:
var td = require('testdouble');
var fetch = td.function();
td.when(fetch(42)).thenReturn('Jane User');
fetch(42); // -> 'Jane User'
var td = require('testdouble');
var save = td.function('.save');
save(41, 'Jane');
td.verify(save(41, 'Jill'));
//
// Error: Unsatisfied verification on test double `.save`.
//
// Wanted:
// - called with `(41, "Jill")`.
//
// But was actually called:
// - called with `(41, "Jane")`.
All of our docs are in the docs/ directory inside this repository and numbered for easy reading in the priority-order we anticipate people needing them. Here's a rough outline:
- Installation
- for Node.js
- for browsers
- initial configuration
- Purpose of testdouble.js
- in unit tests
- in integration tests
- Getting started tutorial
- Creating test doubles
- test double functions with
td.function()
- test double objects with
td.object()
- test double constructors with
td.constructor()
- Stubbing responses
- td.when() API
- equality argument matching
- one-liner stubbings
- stubbing sequential return values
- argument matchers 1. td.matchers.anything() 2. td.matchers.isA() 3. td.matchers.contains()
- Stubbing callback APIs
- Stub exceptions with thenThrow
- Stub promises with thenResolve and thenReject
- Stub side effects with thenDo
- Configuring stubbings 1. ignoreExtraArgs 2. times 3. defer 4. delay
- Verifying invocations
- td.verify() API
- equality argument matching
- argument matchers 1. td.matchers.anything() 2. td.matchers.isA() 3. td.matchers.contains()
- Argument captors
- Configuring verifications 1. ignoreExtraArgs 2. times
- Replacing dependencies with test doubles
- for Node.js
- for Browser JS
- td.replace() API
- Writing custom argument matchers
- Debugging with testdouble.js
- td.explain() API
- Plugins
- testdouble-chai
- testdouble-jasmine
- Frequently Asked Questions
- Why doesn't
td.replace()
work with external CommonJS modules? - Configuration
- td.config