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