mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 22:33:35 +02:00
18 lines
440 B
PHP
18 lines
440 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
beforeEach(function (): void {
|
|
expect(true)->toBeTrue();
|
|
})->ticket(1);
|
|
|
|
it('may be associated with an ticket', function (): void {
|
|
expect(true)->toBeTrue();
|
|
})->ticket(2);
|
|
|
|
describe('nested', function (): void {
|
|
it('may be associated with an ticket', function (): void {
|
|
expect(true)->toBeTrue();
|
|
})->ticket(3);
|
|
})->ticket(4)->note('an note between an the ticket')->ticket([5, 6]);
|