@@ -17,7 +17,7 @@ public function test_it_can_return_the_sail_install_script()
17
17
18
18
$ response ->assertStatus (200 );
19
19
$ response ->assertSee ("laravelsail/php84-composer:latest " );
20
- $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium " ' , false );
20
+ $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium " ' , false );
21
21
}
22
22
23
23
public function test_different_php_versions_can_be_picked ()
@@ -58,15 +58,15 @@ public function test_it_removes_duplicated_valid_services()
58
58
$ response = $ this ->get ('/example-app?with=redis,redis ' );
59
59
60
60
$ response ->assertStatus (200 );
61
- $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=redis " ' , false );
61
+ $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=redis " ' , false );
62
62
}
63
63
64
64
public function test_it_adds_the_devcontainer_upon_request ()
65
65
{
66
66
$ response = $ this ->get ('/example-app?with=pgsql&devcontainer ' );
67
67
68
68
$ response ->assertStatus (200 );
69
- $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=pgsql --devcontainer " ' , false );
69
+ $ response ->assertSee ('bash -c "laravel new example-app --no-interaction && cd example-app && php ./artisan sail:install --with=pgsql --devcontainer " ' , false );
70
70
}
71
71
72
72
public function test_it_does_not_accepts_domains_with_a_dot ()
0 commit comments