tests: fixes snapshots

This commit is contained in:
Nuno Maduro
2021-06-10 19:26:42 +01:00
parent 977dbb5bcb
commit dd2921fd26
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,7 @@
<?php
test('incompleted');
it('is incompleted');
it('is incompleted even with method calls like skip')->skip(false);
@ -10,10 +12,6 @@ it('is not incompleted because of expect')->expect(true)->toBeTrue();
it('is not incompleted because of assert')->assertTrue(true);
it('is not incompleted because of test with no assertions', function () {
// ...
});
it('is not incompleted because of test with assertions', function () {
expect(true)->toBeTrue();
});