Files
pest/tests/Features/Fails.php
2023-12-28 10:36:30 +00:00

10 lines
191 B
PHP

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