mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
10 lines
224 B
PHP
10 lines
224 B
PHP
<?php
|
|
|
|
test('error', function () {
|
|
throw new Exception('error');
|
|
})->skip(! isset($_SERVER['COLLISION_TEST']));
|
|
|
|
test('success', function () {
|
|
expect(true)->toBeTrue();
|
|
})->skip(! isset($_SERVER['COLLISION_TEST']));
|