Vscode plugin: Running TestCases passes when there is a fail
OwenPattison opened this issue · 1 comments
OwenPattison commented
@TestCase(1, 2)
@TestCase(1, 1)
@Test("test numbers")
public oneShouldBeOneNotTwo(first: number, second: numer) {
Expect(first).toBe(second);
}
In vscode pressing run on this suggests a pass, however, when you run in CLI it fails as it should
hisuwh commented
Just spotted this too