Files
pest/tests/Features/BeforeEachProxiesToTestCallWithTodo.php
2023-05-01 22:18:47 +01:00

16 lines
276 B
PHP

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