Files
pest/tests/Hooks/BeforeEachTest.php
2021-03-28 01:54:43 -05:00

12 lines
221 B
PHP

<?php
beforeEach(function (): void {
expect($this->baz)->toBe(1); // set from Pest.php global/shared hook
$this->baz = 2;
});
test('global before each', function (): void {
expect($this->baz)->toBe(2);
});