1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Fix console test

This commit is contained in:
Jake Barnby 2023-08-30 01:10:08 -04:00
parent e3a9fae033
commit 30f5a80703
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -24,11 +24,12 @@ class ConsoleConsoleClientTest extends Scope
], $this->getHeaders()));
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertCount(6, $response['body']);
$this->assertCount(7, $response['body']);
$this->assertIsString($response['body']['_APP_DOMAIN_TARGET']);
$this->assertIsInt($response['body']['_APP_STORAGE_LIMIT']);
$this->assertIsInt($response['body']['_APP_FUNCTIONS_SIZE_LIMIT']);
$this->assertIsString($response['body']['_APP_DOMAIN_TARGET']);
$this->assertIsBool($response['body']['_APP_DOMAIN_ENABLED']);
$this->assertIsBool($response['body']['_APP_VCS_ENABLED']);
$this->assertIsBool($response['body']['_APP_ASSISTANT_ENABLED']);
}