test: update compose worker count

This commit is contained in:
Jake Barnby
2026-05-17 11:21:28 +12:00
parent 3924afb2e0
commit 41e4483c3f
+3 -1
View File
@@ -23,11 +23,13 @@ class ComposeTest extends TestCase
public function testServices(): void
{
$this->assertCount(17, $this->object->getServices());
$this->assertCount(16, $this->object->getServices());
$this->assertEquals('appwrite', $this->object->getService('appwrite')->getContainerName());
$this->assertEquals('', $this->object->getService('appwrite')->getImageVersion());
$this->assertEquals('3.6', $this->object->getService('traefik')->getImageVersion());
$this->assertEquals(['2080' => '80', '2443' => '443', '8080' => '8080'], $this->object->getService('traefik')->getPorts());
$this->assertArrayNotHasKey('appwrite-worker-mails', $this->object->getServices());
$this->assertEquals('appwrite-worker-notifications', $this->object->getService('appwrite-worker-notifications')->getContainerName());
}
public function testNetworks(): void