Fix an issue where a describe block will prevent a beforeEach call from executing

This commit is contained in:
jshayes
2024-10-11 21:24:08 -04:00
parent 3f65af9fdf
commit 0c57142c03
4 changed files with 21 additions and 6 deletions

View File

@ -16,7 +16,7 @@ $run = function () {
test('parallel', function () use ($run) {
expect($run('--exclude-group=integration'))
->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 17 todos, 19 skipped, 1085 passed (2624 assertions)')
->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 17 todos, 19 skipped, 1086 passed (2625 assertions)')
->toContain('Parallel: 3 processes');
})->skipOnWindows();