fix tests

This commit is contained in:
Saeed Vaziry
2024-03-27 13:32:25 +01:00
parent b6179d6693
commit c66c50835a
22 changed files with 29 additions and 8 deletions

View File

@ -16,6 +16,8 @@ public function test_see_services_list(): void
$this->actingAs($this->user);
$this->get(route('servers.services', $this->server))
->assertSuccessful()
->assertSee('mysql')
->assertSee('nginx')
->assertSee('php')
->assertSee('supervisor')
@ -242,6 +244,7 @@ public static function data(): array
['redis'],
['ufw'],
['php'],
['mysql'],
];
}
}