Skip to content

Commit 5f1056a

Browse files
authoredMay 22, 2025··
Test Improvements (#186)
1 parent 9d39502 commit 5f1056a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎tests/Feature/ParallelTestingTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
use Laravel\BrowserKitTesting\TestCase;
88
use Laravel\BrowserKitTesting\Tests\CreatesApplication;
99
use Orchestra\Testbench\Foundation\Env;
10-
use Orchestra\Testbench\Support\UndefinedValue;
1110

1211
class ParallelTestingTest extends TestCase
1312
{
1413
use CreatesApplication, DatabaseTransactions;
1514

1615
protected function setUp(): void
1716
{
18-
if (Env::get('LARAVEL_PARALLEL_TESTING', new UndefinedValue) instanceof UndefinedValue) {
17+
if (Env::get('LARAVEL_PARALLEL_TESTING', false) === false) {
1918
$this->markTestSkipped('Requires paratest to execute the tests');
2019
}
2120

0 commit comments

Comments
 (0)
Please sign in to comment.