Files
pest/tests/Fixtures/Suites/IssueWithPassing.php
T
2026-08-04 20:19:12 +01:00

12 lines
214 B
PHP

<?php
declare(strict_types=1);
it('passes normally', function () {
expect(true)->toBeTrue();
});
it('references a missing dataset', function ($value) {
expect($value)->toBeTruthy();
})->with('missing');