Files
pest/tests/Features/Ticket.php
2024-07-04 00:53:58 +01:00

16 lines
390 B
PHP

<?php
beforeEach(function () {
expect(true)->toBeTrue();
})->ticket(1);
it('may be associated with an ticket', function () {
expect(true)->toBeTrue();
})->ticket(2);
describe('nested', function () {
it('may be associated with an ticket', function () {
expect(true)->toBeTrue();
})->ticket(3);
})->ticket(4)->note('an note between an the ticket')->ticket([5, 6]);