在Jasmine中执行1之0(跳过1)错误

时间:2019-11-27 03:59:47

标签: jasmine karma-jasmine

我的测试依赖项如下

Executed 0 of 1 (skipped 1) ERROR

在浏览器窗口中,我得到describe('Aymans first test', () => { let sut; // System under test beforeEach(() =>{ sut = {} }) it('should be true'), () => { sut.a = true; expect(sut.a).toBe(true); } }) 和一个待定的规范。

下面的代码段是我的测试规范:

    class CustomMKMarkerSubclass: MKMarkerAnnotationView {
    override var annotation: MKAnnotation? {
        willSet {
            if let _ = newValue as? MapLocation {
                displayPriority = MKFeatureDisplayPriority.required
                canShowCallout = true
            }
        }
    }
}

1 个答案:

答案 0 :(得分:0)

it中的右圆括号放错了位置。

it('should be true'), () => {
    ...
}

应更改为...

it('should be true', () => {
    ...
});