mocha
決定是否測試成功
describe('加法測試', function() {
it('1 加 1 = 2', function(done) {
done(new Error('錯誤'))
});
});describe('加法測試', function() {
it('1 加 1 = 2', function(done) {
done()
});
});異步測試(Async)
測試報表UI
Last updated