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

16 lines
290 B
PHP

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