Files
pest/tests/Features/Wip.php
2024-09-03 14:09:03 +01:00

18 lines
418 B
PHP

<?php
it('may have an associated assignee', function () {
expect(true)->toBeTrue();
})->wip(assignee: 'nunomaduro');
it('may have an associated issue', function () {
expect(true)->toBeTrue();
})->wip(issue: 1);
it('may have an associated PR', function () {
expect(true)->toBeTrue();
})->wip(pr: 1);
it('may have an associated note', function () {
expect(true)->toBeTrue();
})->wip(note: 'a note');