chore: adjusts for parallel testing

This commit is contained in:
Nuno Maduro
2023-04-14 11:01:54 +01:00
parent d6c3f3522b
commit 6d8b926df3
6 changed files with 12 additions and 14 deletions

View File

@ -18,10 +18,10 @@ $run = function () {
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 (1702 assertions)')
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 11 skipped, 698 passed (1702 assertions)')
->toContain('Parallel: 3 processes');
})->skip();
})->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)');
})->skip();
});