Files
pest/tests/Features/BeforeEachProxiesToTestCallWithExpectations.php
T
2026-07-18 01:10:01 +01:00

16 lines
299 B
PHP

<?php
beforeEach()->expect(true)->toBeTrue();
test('runs 1', function (): void {
// This test did performs assertions...
});
test('runs 2', function (): void {
// This test did performs assertions...
});
test('runs 3', function (): void {
// This test did performs assertions...
});