fix: --todos in parallel and feedback on process isolation

This commit is contained in:
Nuno Maduro
2023-03-19 02:01:08 +00:00
parent 48ea48981b
commit 2da899a2b1
5 changed files with 40 additions and 6 deletions

View File

@ -25,9 +25,9 @@ $snapshot = function ($name) {
};
test('todo', function () use ($run, $snapshot) {
expect($run('--todo', false))->toContain($snapshot('todo'));
expect($run('--todos', false))->toContain($snapshot('todo'));
})->skip(PHP_OS_FAMILY === 'Windows');
test('todo in parallel', function () use ($run, $snapshot) {
expect($run('--todo', true))->toContain($snapshot('todo'));
expect($run('--todos', true))->toContain($snapshot('todo'));
})->skip(PHP_OS_FAMILY === 'Windows');