We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d39502 commit 5f1056aCopy full SHA for 5f1056a
tests/Feature/ParallelTestingTest.php
@@ -7,15 +7,14 @@
7
use Laravel\BrowserKitTesting\TestCase;
8
use Laravel\BrowserKitTesting\Tests\CreatesApplication;
9
use Orchestra\Testbench\Foundation\Env;
10
-use Orchestra\Testbench\Support\UndefinedValue;
11
12
class ParallelTestingTest extends TestCase
13
{
14
use CreatesApplication, DatabaseTransactions;
15
16
protected function setUp(): void
17
18
- if (Env::get('LARAVEL_PARALLEL_TESTING', new UndefinedValue) instanceof UndefinedValue) {
+ if (Env::get('LARAVEL_PARALLEL_TESTING', false) === false) {
19
$this->markTestSkipped('Requires paratest to execute the tests');
20
}
21
0 commit comments