show current version

This commit is contained in:
Saeed Vaziry
2024-03-31 23:29:22 +02:00
parent cca4ab7ae3
commit c0f903d4ca
12 changed files with 67 additions and 30 deletions

View File

@ -212,7 +212,7 @@ public function test_git_hook_deployment(): void
'content' => 'git pull',
]);
$this->post(route('git-hooks'), [
$this->post(route('api.git-hooks'), [
'secret' => 'secret',
])->assertSessionDoesntHaveErrors();
@ -240,7 +240,7 @@ public function test_git_hook_deployment_invalid_secret(): void
'content' => 'git pull',
]);
$this->post(route('git-hooks'), [
$this->post(route('api.git-hooks'), [
'secret' => 'invalid-secret',
])->assertNotFound();