We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a279275 commit 6e8d15eCopy full SHA for 6e8d15e
appengine/flexible/logging/test/LocalTest.php
@@ -33,14 +33,15 @@ public function createApplication()
33
{
34
$app = require __DIR__ . '/../app.php';
35
$app['project_id'] = getenv('GOOGLE_PROJECT_ID');
36
+ $app['debug'] = true;
37
return $app;
38
}
39
40
public function testSomeLogs()
41
42
$this->client->request('GET', '/');
43
$response = $this->client->getResponse();
- $this->assertTrue($response->isOk());
44
+ $this->assertEquals(200, $response->getStatusCode());
45
$text = $response->getContent();
46
$this->assertContains("Logs:", $text);
47
0 commit comments