fix teamcity output for tests throwing an exception before the first assertion

This commit is contained in:
Sandro Gehri
2023-05-11 22:27:43 +02:00
parent 983659f8e8
commit a851b5ed70
4 changed files with 108 additions and 47 deletions

View File

@ -18,9 +18,17 @@ it('can fail', function () {
$this->fail("oh noo");
});
it('throws exception', function () {
throw new Exception('test error');
});
it('is not done yet', function () {
})->todo();
todo("build this one.");
it('is passing', function () {
expect(true)->toEqual(true);
});