mirror of
https://github.com/pestphp/pest.git
synced 2026-07-21 17:10:03 +02:00
18 lines
334 B
PHP
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');
|
|
});
|