我有这个与 Karma 一起运行的茉莉花测试:
describe('When a logged in user chooses Rent and Payment PIN is enabled', function() {
beforeEach(function(){
});
afterEach(function() {
});
it('should be presented with a dialog to enter the pin', function() {
//test to be skipped
})
})
我想在报告中看到该测试已被跳过,并在测试所需的所有东西都准备好时回来测试。
我怎样才能做到这一点?