Add tests

This commit is contained in:
jshayes
2024-10-13 10:39:17 -04:00
parent 9510d4a2f9
commit 6968094e2b
10 changed files with 357 additions and 11 deletions

View File

@ -72,3 +72,7 @@ describe('describe block', function () {
})->depends('second in nested describe');
});
});
test('depends on test after describe block', function () use (&$runCounter) {
expect($runCounter)->toBe(2);
})->depends('first', 'second');