mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
replaced tabs with 2 spaces
This commit is contained in:
parent
080702ac87
commit
774a723bff
2 changed files with 13 additions and 13 deletions
|
@ -97,7 +97,7 @@ module.exports = function (chai, util) {
|
|||
*/
|
||||
|
||||
assert.notOk = function (val, msg) {
|
||||
new Assertion(val, msg).is.not.ok;
|
||||
new Assertion(val, msg).is.not.ok;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -51,21 +51,21 @@ suite('assert', function () {
|
|||
});
|
||||
|
||||
test('notOk', function () {
|
||||
assert.notOk(false);
|
||||
assert.notOk(0);
|
||||
assert.notOk('');
|
||||
assert.notOk(false);
|
||||
assert.notOk(0);
|
||||
assert.notOk('');
|
||||
|
||||
err(function () {
|
||||
assert.notOk(true);
|
||||
}, "expected true to be falsy");
|
||||
err(function () {
|
||||
assert.notOk(true);
|
||||
}, "expected true to be falsy");
|
||||
|
||||
err(function () {
|
||||
assert.notOk(1);
|
||||
}, "expected 1 to be falsy");
|
||||
err(function () {
|
||||
assert.notOk(1);
|
||||
}, "expected 1 to be falsy");
|
||||
|
||||
err(function () {
|
||||
assert.notOk('test');
|
||||
}, "expected 'test' to be falsy");
|
||||
err(function () {
|
||||
assert.notOk('test');
|
||||
}, "expected 'test' to be falsy");
|
||||
});
|
||||
|
||||
test('isFalse', function () {
|
||||
|
|
Loading…
Reference in a new issue