mirror of
https://github.com/pestphp/pest.git
synced 2026-07-22 01:20:03 +02:00
10 lines
184 B
PHP
10 lines
184 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
test('output', function (): void {
|
|
echo 'this is unexpected output';
|
|
|
|
expect(true)->toBeTrue();
|
|
})->skip(! isset($_SERVER['COLLISION_TEST']));
|