Open tyranron opened 2 years ago
@tyranron from what I can tell, we can easily support this with another Writer
implementation, as we generate a lot more events, than just Test(Case/Step)(Started/Finished)
. Those additional events allow us to skip some parsing stuff, like we don't have to count finished Scenarios
for particular Feature
to be sure, that it's finished. We can just wait for the event::Feature::Finished
.
But I would hold on implementing this feature for couple of reasons:
My proposal is to wait until more tools will support it or until users of this library will actually ask for it.
@ilslv
My proposal is to wait until more tools will support it or until users of this library will actually ask for it.
Or there will be a demand from library users for it.
Revealed from https://github.com/cucumber-rs/gherkin/discussions/28#discussion-3257377
@ilslv what do you think about this? We have the similar thing in our implementation, but hand-baked. Should we support it as a bare-bone of our implementation, or rather have just yet another
Writer
for it?