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

16 lines
308 B
PHP

<?php
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');
});