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

@ -20,7 +20,7 @@ test('parallel', function () use ($run) {
expect($run('--exclude-group=integration'))
->toContain('Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 11 skipped, 697 passed (1696 assertions)')
->toContain('Parallel: 3 processes');
})->skip(PHP_OS_FAMILY === 'Windows');
})->skipOnWindows();
test('a parallel test can extend another test with same name', function () use ($run) {
expect($run('tests/Fixtures/Inheritance'))->toContain('Tests: 1 skipped, 2 passed (2 assertions)');