11

我有这个与 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
    })
})    

我想在报告中看到该测试已被跳过,并在测试所需的所有东西都准备好时回来测试。

我怎样才能做到这一点?

4

1 回答 1

8

您可以尝试pending在规范中使用该功能。根据文档,待定规范不会运行,但名称仍会出现在结果中。对于 2.0,它还说空的方法体应该可以工作。尝试:

it('should be presented with a dialog to enter the pin', function() {
   pending();
})

或者

it('should be presented with a dialog to enter the pin');
于 2014-02-11T22:15:06.680 回答