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 7ba6047 commit 7abab3aCopy full SHA for 7abab3a
tests/Integration/Foundation/Console/AboutCommandTest.php
@@ -11,13 +11,13 @@ class AboutCommandTest extends TestCase
11
{
12
public function testItCanDisplayAboutCommandAsJson()
13
14
- $process = remote('about --json')->mustRun();
+ $process = remote('about --json', ['APP_ENV' => 'local'])->mustRun();
15
16
tap(json_decode($process->getOutput(), true), function ($output) {
17
Assert::assertArraySubset([
18
'application_name' => 'Laravel',
19
'php_version' => PHP_VERSION,
20
- 'environment' => 'testing',
+ 'environment' => 'local',
21
'debug_mode' => true,
22
'url' => 'localhost',
23
'maintenance_mode' => false,
0 commit comments