mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Symfony\Component\Process\Process;
|
|
|
|
$run = function (string $target, bool $parallel) {
|
|
$process = new Process(['php', 'bin/pest', $target, $parallel ? '--parallel' : ''], dirname(__DIR__, 2),
|
|
['COLLISION_PRINTER' => 'DefaultPrinter', 'COLLISION_IGNORE_DURATION' => 'true'],
|
|
);
|
|
|
|
$process->run();
|
|
|
|
expect($process->getExitCode())->toBe(0);
|
|
|
|
$output = $process->getOutput();
|
|
|
|
return preg_replace('/Duration: \d+\.\d+s/', 'Duration: x.xxs', removeAnsiEscapeSequences($output));
|
|
};
|
|
|
|
test('todos', function () use ($run) {
|
|
expect($run('--todos', false))->toMatchSnapshot();
|
|
})->skipOnWindows()->skip(! getenv('REBUILD_SNAPSHOTS') && getenv('EXCLUDE'));
|
|
|
|
test('todos in parallel', function () use ($run) {
|
|
expect($run('--todos', true))->toMatchSnapshot();
|
|
})->skipOnWindows()->skip(! getenv('REBUILD_SNAPSHOTS') && getenv('EXCLUDE'));
|
|
|
|
test('todo', function () use ($run) {
|
|
expect($run('--todo', false))->toMatchSnapshot();
|
|
})->skipOnWindows()->skip(! getenv('REBUILD_SNAPSHOTS') && getenv('EXCLUDE'));
|
|
|
|
test('todo in parallel', function () use ($run) {
|
|
expect($run('--todo', true))->toMatchSnapshot();
|
|
})->skipOnWindows()->skip(! getenv('REBUILD_SNAPSHOTS') && getenv('EXCLUDE'));
|