運行jasmine
時,它只顯示成功測試的點(.
),如果測試失敗,則只顯示詳細信息。如何顯示茉莉花通過測試?
//test.spec.js
describe('jasmine',()=>{
it('should show this text',() =>{
});
})
我運行的命令是:jasmine-node test.spec.js
結果:
.
Finished in 0.003 seconds
1 test, 1 assertion, 0 failures, 0 skipped
如何使jasmine
顯示這個測試結果類似jasmine should show this text
?
如果它可以幫助你搜索,你問如何配置和使用與茉莉花不同的**記者**。 – stealththeninja