Files
pest/tests/Visual/BeforeEachTestName.php
2023-03-14 13:06:42 +00:00

8 lines
195 B
PHP

<?php
beforeEach(fn () => $this->latestDescription = self::$__latestDescription);
test('latest description', function () {
expect($this->latestDescription)->toBe('latest description');
});