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

20 lines
468 B
PHP

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