mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
feat: allows to chain todo
This commit is contained in:
@ -2,6 +2,12 @@
|
||||
|
||||
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();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user