We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b5858 commit ea611a5Copy full SHA for ea611a5
1 file changed
tests/Integrations/ZendFramework/V1/CommonScenariosTest.php
@@ -14,6 +14,13 @@ protected static function getAppIndexScript()
14
return __DIR__ . '/../../../Frameworks/ZendFramework/Version_1_12/public/index.php';
15
}
16
17
+ protected static function getEnvs()
18
+ {
19
+ return array_merge(parent::getEnvs(), [
20
+ 'DD_TRACE_AGENT_FLUSH_AFTER_N_REQUESTS' => 1,
21
+ ]);
22
+ }
23
+
24
/**
25
* @dataProvider provideSpecs
26
* @param RequestSpec $spec
@@ -22,6 +29,8 @@ protected static function getAppIndexScript()
29
*/
30
public function testScenario(RequestSpec $spec, array $spanExpectations)
31
{
32
+ $this->resetRequestDumper();
33
34
$traces = $this->tracesFromWebRequest(function () use ($spec) {
35
$this->call($spec);
27
36
});
0 commit comments