You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now save-cli is writing test report after all logic is already done. We keep all results in the memory and only after all tests are processed save provides them to a reporter that is writing results.
We have two variants here:
in real time write results to the file (one test - one file)
append results to some pipe/file in a real time
That will be useful for save-cloud
The text was updated successfully, but these errors were encountered:
We keep all results in the memory and only after all tests are processed save provides them to a reporter that is writing results.
That's not true. Reporter already has a number of 'lifecycle listeners', e.g. onEvent(event: TestResult). PlainTextReporter is writing all data in real time, as does JSON reporter. However, for JSON reporter report becomes properly formatted only after the execution is finished, because JSON is a structured text format, unlike plain text.
Right now save-cli is writing test report after all logic is already done. We keep all results in the memory and only after all tests are processed save provides them to a reporter that is writing results.
We have two variants here:
That will be useful for save-cloud
The text was updated successfully, but these errors were encountered: