我的测试依赖项如下
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
}
}
}
}
答案 0 :(得分:0)
it
中的右圆括号放错了位置。
it('should be true'), () => {
...
}
应更改为...
it('should be true', () => {
...
});