When running jasmine it only presents dot(.) for successful tests, and only verbose if the test fails.
//test.spec.js
describe('jasmine', ()=>{
it('should show this text', () =>{
});
})
My running command is: jasmine-node test.spec.js
The result:
.
Finished in 0.003 seconds
1 test, 1 assertion, 0 failures, 0 skipped
How to make jasmine display this test result like jasmine should show this text?