chore: adjusts tests

This commit is contained in:
Nuno Maduro
2024-09-03 14:09:03 +01:00
parent 8920b850e1
commit e2d360b1b5
36 changed files with 187 additions and 84 deletions

17
tests/Features/Wip.php Normal file
View File

@ -0,0 +1,17 @@
<?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');