require('jasmine-node')
describe( "hello world", function() {
it( "a simple app", function(){
expect("1").toEqual("1")
console.log("this is a simpler application")
});
});
I am trying to run the above helloworld program using jasmine-node
. But it is not running any tests and shows message as,
0 tests, 0 assertions, 0 failures, 0 skipped
I am not keen on using a configuration file for just one spec file.