feat: skips on windows

This commit is contained in:
Nuno Maduro
2023-03-31 22:20:48 +01:00
parent 23c8adf497
commit 49ddcbd66b
8 changed files with 21 additions and 10 deletions

View File

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