Files
pest/tests/Features/Fails.php
T
nuno maduro cd0e921158 chore: style
2026-07-19 00:42:29 +01:00

12 lines
229 B
PHP

<?php
declare(strict_types=1);
it('may fail', function (): void {
$this->fail();
})->fails();
it('may fail with the given message', function (): void {
$this->fail('this is a failure');
})->fails('this is a failure');