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

16 lines
288 B
PHP

<?php
beforeEach()->todo();
test('is marked as todo 1', function (): void {
$this->fail('This test should not run');
});
test('is marked as todo 2', function (): void {
$this->fail('This test should not run');
});
test('is marked as todo 3');
test()->shouldBeMarkedAsTodo();