mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
Adds done
This commit is contained in:
17
tests/Features/Done.php
Normal file
17
tests/Features/Done.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
it('may have an associated assignee', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->done(assignee: 'nunomaduro');
|
||||
|
||||
it('may have an associated issue', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->done(issue: 1);
|
||||
|
||||
it('may have an associated PR', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->done(pr: 1);
|
||||
|
||||
it('may have an associated note', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->done(note: 'a note');
|
||||
Reference in New Issue
Block a user