Files
pest/tests/Features/Todo.php
2023-01-10 20:21:36 +00:00

14 lines
298 B
PHP

<?php
todo('something todo later');
test('something todo later chained')->todo();
test('something todo later chained and with function body', function () {
expect(true)->toBeFalse();
})->todo();
it('does something within a file with a todo', function () {
expect(true)->toBeTrue();
});