BUG: Asserting after `test.done()` is allowed
Open
- Dominant language
- JavaScript
- Stars
- 1.9k
- Forks
- 359
- PR merge metrics
- No merged PRs in 30d
Description
``` javascript
exports.test1 = function(test) {
test.expect(1);
test.ok(true, 'is true');
test.done();
// this should throw an error, however it passes
test.ok(true, 'is true2');
};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.