mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
fd64142295
* Set up Jenkins file #74 * Fix Allure trend * Display resolution changed on CI * TestRail integration * Fix test on create community * Fix wallet tests * Fix field description in jenkinsfile * Test name and test scope parameters were split in Jenkinsfile * Clean up moved in post stage * Environment variables set up changed in JenkinsFile * Fix test ID * Fix warnings in JenkinsFile * Copy artifacts directory changed * Fix of two space indentations in Jenkinsfile * Extra environment variable removed * Move tests wallet in one folder --------- Co-authored-by: Valentina Novgorodtceva <valentina@status.im>
15 lines
335 B
Python
Executable File
15 lines
335 B
Python
Executable File
import logging
|
|
|
|
import allure
|
|
import pytest
|
|
from allure_commons._allure import step
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
pytestmark = allure.suite("Self")
|
|
|
|
|
|
@pytest.mark.self
|
|
def test_start_aut(main_window):
|
|
with step("Verify: 'main_window' fixture launched test app and prepared main window"):
|
|
assert main_window.exists
|