Files
pest/tests/Features/BeforeEachProxiesToTestCallWithExpectations.php
2023-05-01 22:18:47 +01:00

16 lines
281 B
PHP

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