We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b9154 commit 34c6a6eCopy full SHA for 34c6a6e
tests/Feature/Command/TailwindCssCommandTest.php
@@ -23,14 +23,4 @@ public function it_installs_tailwindcss_command(): void
23
->expectsConfirmation('css/app.css file does not exist. Would you like to install it now?', 'yes')
24
->assertExitCode(0);
25
}
26
-
27
- /** @test */
28
- public function it_asks_to_overwrite_tailwindcss_command(): void
29
- {
30
- $this->artisan('tailwindcss:install')
31
- ->expectsConfirmation('tailwind.config.js already exists. Do you want to overwrite it?', 'no')
32
- ->expectsConfirmation('postcss.config.js already exists. Do you want to overwrite it?', 'no')
33
- ->expectsConfirmation('css/app.css file already exists. Do you want to overwrite it?', 'no')
34
- ->assertExitCode(0);
35
- }
36
0 commit comments