mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02: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