Adds assignees

This commit is contained in:
Nuno Maduro
2024-08-03 17:05:34 +01:00
parent 6fb1133d52
commit 41e50cac05
10 changed files with 124 additions and 8 deletions

View File

@ -0,0 +1,15 @@
<?php
beforeEach(function () {
expect(true)->toBeTrue();
})->assignee('nunomaduro');
it('may be associated with an assignee', function () {
expect(true)->toBeTrue();
})->assignee('taylorotwell');
describe('nested', function () {
it('may be associated with an assignee', function () {
expect(true)->toBeTrue();
})->assignee('taylorotwell');
})->assignee('nunomaduro')->note('an note between an the assignee')->assignee(['jamesbrooks', 'joedixon']);