Skip to content

Commit 079d41c

Browse files
committed
fix: tests
1 parent b6a3a62 commit 079d41c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

routes/web.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
'string',
4848
count($with) === 1 && in_array('none', $with) ? Rule::in(['none']) : Rule::in($availableServices)
4949
],
50-
'starter-kit' => ['sometimes', 'string', Rule::in(['react', 'vue', 'livewire'])],
50+
'starter-kit' => ['string', Rule::in(['react', 'vue', 'livewire'])],
5151
]
5252
);
5353
} catch (ValidationException $e) {

tests/Feature/SailServerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function test_it_adds_the_devcontainer_upon_request()
6666
$response = $this->get('/example-app?with=pgsql&devcontainer');
6767

6868
$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);
7070
}
7171

7272
public function test_it_does_not_accepts_domains_with_a_dot()

0 commit comments

Comments
 (0)