mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 00:51:10 +00:00
12 lines
190 B
Python
12 lines
190 B
Python
class TestData:
|
|
|
|
def __init__(self):
|
|
|
|
self.test_name = None
|
|
self.steps = []
|
|
self.error = []
|
|
self.aut_screenshot_attached = False
|
|
|
|
|
|
test_data = TestData()
|