Files
pest/tests/Features/BeforeEachProxiesToTestCallWithSkip.php
T
nuno maduro cd0e921158 chore: style
2026-07-19 00:42:29 +01:00

18 lines
334 B
PHP

<?php
declare(strict_types=1);
beforeEach()->skip();
test('does not run 1', function (): void {
$this->fail('This test should not run');
});
test('does not run 2', function (): void {
$this->fail('This test should not run');
});
test('does not run 3', function (): void {
$this->fail('This test should not run');
});