Skip to content

Commit

Permalink
Update CommandTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
askdkc committed Nov 17, 2022
1 parent 6da5751 commit 9b04577
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions tests/CommandTest.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
<?php

test('breezejp command stop successfully because Breeze is not installed', closure: function () {
test('breezejp command successfully run and see all the published files', closure: function () {
$this->artisan('breezejp')
->expectsOutput('Laravel Breeze用に日本語翻訳ファイルを準備します')
->expectsOutput('Laravel BreezeのProfile用に翻訳可能なbladeを準備します')
->expectsOutput('先にLaravel Breezeをインストールしてください')
->expectsConfirmation('強制的に実行しますか?(Breezeを使わずバリデーションの日本語化利用時等はyesを選択)', 'no')
->assertExitCode(1);
});

test('breezejp command forcefully run and see all the published files', closure: function () {
$this->artisan('breezejp')
->expectsOutput('Laravel Breeze用に日本語翻訳ファイルを準備します')
->expectsOutput('Laravel BreezeのProfile用に翻訳可能なbladeを準備します')
->expectsOutput('先にLaravel Breezeをインストールしてください')
->expectsConfirmation('強制的に実行しますか?(Breezeを使わずバリデーションの日本語化利用時等はyesを選択)', 'yes')
->expectsOutput('実行完了')
->expectsConfirmation('GitHubリポジトリにスターの御協力をお願いします🙏', 'no')
->expectsOutput('日本語ファイルのインストールが完了しました!')
->assertExitCode(0);
Expand Down

0 comments on commit 9b04577

Please sign in to comment.