specta / expecta

A Matcher Framework for Objective-C/Cocoa
MIT License
1.59k stars 158 forks source link

Didn't highlight assert fail line number in Xcode 8 #185

Open marcuswu0814 opened 7 years ago

marcuswu0814 commented 7 years ago

My test code:

...
it(@"should close info dialog", ^{
    [dataModel cancelRequest];

    expect(dataModel.isShowingDialog).to.equal(NO);
});

whenexpect(dataModel.isShowingDialog).to.equal(NO); fail, Xcode didn't highlight it but have fail log, anything I forgot to set?