In the example code of `README.md`, there's an error in the async test. The line: ```javascript var done = assert.stop(); ``` Should be replaced by: ```javascript var done = assert.async(); ``` See: [here](https://api.qunitjs.com/assert/async).