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

10 lines
203 B
PHP

<?php
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');