alsatian-test / alsatian

TypeScript testing framework with test cases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vscode plugin: Running TestCases passes when there is a fail

OwenPattison opened this issue · comments

@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

Just spotted this too