mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
12 lines
221 B
PHP
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);
|
|
});
|