mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
Add tests
This commit is contained in:
@ -124,3 +124,11 @@ describe('skip on beforeEach', function () {
|
||||
expect($this->ran)->toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
it('does not skip after the describe block', function () {
|
||||
expect(true)->toBeTrue();
|
||||
});
|
||||
|
||||
it('can skip after the describe block', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->skip();
|
||||
|
||||
Reference in New Issue
Block a user