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
})
})
そして、このテストがスキップされたことをレポートで確認し、テストに必要なすべての準備が整ったときにテストに戻りたい.
どうすればこれを達成できますか?