diff --git a/bardjs/bardjs-tests.ts b/bardjs/bardjs-tests.ts index 3eedd970b..3aba6cade 100644 --- a/bardjs/bardjs-tests.ts +++ b/bardjs/bardjs-tests.ts @@ -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); } -} \ No newline at end of file +}