fix: description when before each fails

This commit is contained in:
Nuno Maduro
2023-03-14 13:06:42 +00:00
parent 57cd294f0f
commit 4b1cad2493
4 changed files with 13 additions and 5 deletions

View File

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