ApprovalTests.Python
ApprovalTests.Python copied to clipboard
add `Options.add_reporter()`
wanted:
verify(story, options=Options().inline().add_reporter(app.screenshot_reporter()))
current workaround:
try:
verify(story, options=Options().inline())
except:
pass
verify(story, options=Options().with_reporter(app.screenshot_reporter()).inline())