Skip to content

Commit

Permalink
Update CommandTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
askdkc committed Jan 17, 2024
1 parent a75cd7f commit a42b217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

test('.env file exists', function () {
$this->assertFileExists(base_path('.env'));
var_dump(file_get_contents(base_path(".env")));
});

test('breezejp command successfully run and see all the published files', closure: function () {
Expand Down Expand Up @@ -32,7 +33,6 @@
$this->assertStringContainsString("'timezone' => 'Asia/Tokyo'", $configfile);
} else { // For Laravel 11 and above
$configfile = file_get_contents(base_path('.env'));
dump($configfile);
$this->assertStringContainsString('APP_LOCALE=ja', $configfile);
$this->assertStringContainsString('APP_FAKER_LOCALE=ja_JP', $configfile);
$this->assertStringContainsString('APP_TIMEZONE=Asia/Tokyo', $configfile);
Expand Down

0 comments on commit a42b217

Please sign in to comment.