Files
pest/tests/Visual/Help.php
2020-11-12 09:11:51 +00:00

14 lines
333 B
PHP

<?php
test('visual snapshot of help command output', function () {
$output = function () {
$process = (new Symfony\Component\Process\Process(['php', 'bin/pest', '--help', '--colors=never']));
$process->run();
return $process->getOutput();
};
expect($output())->toContain('Pest Options:');
});