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 296d7d0 commit cac7695Copy full SHA for cac7695
cucumber_cpp/library/report/StdOutReport.cpp
@@ -184,7 +184,8 @@ namespace cucumber_cpp::library::report
184
void StdOutReport::StepStart(const engine::StepInfo& stepInfo)
185
{
186
std::cout << "\n"
187
- << stepTypeLut.at(stepInfo.Type()) << " " << stepInfo.Text();
+ << stepTypeLut.at(stepInfo.Type()) << " " << stepInfo.Text()
188
+ << std::flush;
189
}
190
191
void StdOutReport::StepEnd(engine::Result result, const engine::StepInfo& stepInfo, TraceTime::Duration duration)
0 commit comments