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 d3f12ad commit baa40b4Copy full SHA for baa40b4
tests/VoltTestTest.php
@@ -29,7 +29,7 @@ public function testVoltTest()
29
$scenario1->step("Step 1")->get('https://www.google.com');
30
$scenario2 = $voltTest->scenario("Test Scenario 2")->setWeight(90);
31
$scenario2->step("Step 1")->get('https://www.google.com');
32
- $result = $voltTest->run();
+ $result = $voltTest->run(true);
33
$this->assertNotEmpty($result->getRawOutput(), "Raw output is empty");
34
$this->assertGreaterThan(0, $result->getDuration(), "Duration is not greater than 0");
35
$this->assertGreaterThan(0, $result->getAvgResponseTime(), "Average response time is not greater than 0");
0 commit comments