Check on non named tests

This commit is contained in:
Jordan Welch
2024-04-29 18:10:35 -05:00
parent 8bbee3c1e5
commit 10da81eee4
3 changed files with 8 additions and 2 deletions

View File

@ -61,6 +61,10 @@ test('lazy datasets did the job right', function () use ($state) {
expect($state->text)->toBe('12');
});
test('interpolated :dataset lazy datasets', function ($text) {
expect(true)->toBeTrue();
})->with($datasets);
$state->text = '';
test('eager datasets', function ($text) use ($state, $datasets) {