The test parameter isn't used, it shows as undefined when debugging the test:
```
exports['Test 1'] = function (test) {
assert.ok(true, "This shouldn't fail");
}
exports['Test 2'] = function (test) {
var text = 'hello world';
assert.ok(1 === 1, "This shouldn't fail");
assert.ok(false, "This should fail");
}
```
```
exports['Test 1'] = function (test) {
assert.ok(true, "This shouldn't fail");
}
exports['Test 2'] = function (test) {
var text = 'hello world';
assert.ok(1 === 1, "This shouldn't fail");
assert.ok(false, "This should fail");
}
```