mirror of
https://github.com/pestphp/pest.git
synced 2026-07-25 02:50:04 +02:00
fix: package lock fingerprint
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
<?php
|
||||
|
||||
beforeEach(function () {
|
||||
beforeEach(function (): void {
|
||||
expect(true)->toBeTrue();
|
||||
})->issue(1);
|
||||
|
||||
it('may be associated with an issue', function () {
|
||||
it('may be associated with an issue', function (): void {
|
||||
expect(true)->toBeTrue();
|
||||
})->issue(2);
|
||||
|
||||
describe('nested', function () {
|
||||
it('may be associated with an issue', function () {
|
||||
describe('nested', function (): void {
|
||||
it('may be associated with an issue', function (): void {
|
||||
expect(true)->toBeTrue();
|
||||
})->issue('#3');
|
||||
})->issue(4)->note('an note between an the issue')->issue([5, 6]);
|
||||
|
||||
Reference in New Issue
Block a user