Files
pest/tests/Features/Incompleted.php
T
2026-07-18 01:10:01 +01:00

22 lines
528 B
PHP

<?php
test('incompleted');
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 assertions', function (): void {
expect(true)->toBeTrue();
});
describe('a "describe" group of tests', function (): void {
it('is incompleted');
});