mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
20 lines
499 B
PHP
20 lines
499 B
PHP
<?php
|
|
|
|
it('is incompleted');
|
|
|
|
it('is incompleted even with method calls like skip')->skip(false);
|
|
|
|
it('is incompleted even with method calls like group')->group('wtv');
|
|
|
|
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();
|
|
});
|