Formatted bardjs tests.

This commit is contained in:
Andrew Archibald
2015-07-16 09:49:34 -07:00
parent 6de3f1f79c
commit e6b1d5f73b
+6 -6
View File
@@ -128,11 +128,11 @@ module bardTests {
*/
function test_debugging() {
console.log(
bard.debugging(true), // should be true
bard.debugging(false), // should be false
bard.debugging(42), // should be true
bard.debugging(''), // should be false
bard.debugging() // should be false
bard.debugging(true), // should return true
bard.debugging(false), // should return false
bard.debugging(42), // should return true
bard.debugging(''), // should return false
bard.debugging() // should return false
);
}
@@ -280,4 +280,4 @@ module bardTests {
function done() { console.log('...Done'); }
bard.wrapWithDone(callback, done);
}
}
}