mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
refactoring (#116)
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
This commit is contained in:
@ -33,7 +33,7 @@ public function test_connect_provider(string $provider, ?string $customUrl): voi
|
||||
$input['url'] = $customUrl;
|
||||
}
|
||||
$this->post(route('source-controls.connect'), $input)
|
||||
->assertSessionHasNoErrors();
|
||||
->assertSessionDoesntHaveErrors();
|
||||
|
||||
$this->assertDatabaseHas('source_controls', [
|
||||
'provider' => $provider,
|
||||
@ -57,7 +57,7 @@ public function test_delete_provider(string $provider): void
|
||||
]);
|
||||
|
||||
$this->delete(route('source-controls.delete', $sourceControl->id))
|
||||
->assertSessionHasNoErrors();
|
||||
->assertSessionDoesntHaveErrors();
|
||||
|
||||
$this->assertDatabaseMissing('source_controls', [
|
||||
'id' => $sourceControl->id,
|
||||
|
Reference in New Issue
Block a user