mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 08:36:39 +00:00
14 lines
190 B
Python
Executable File
14 lines
190 B
Python
Executable File
import logging
|
|
|
|
import pytest
|
|
|
|
import driver
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
@pytest.mark.self
|
|
def test_import_squish():
|
|
_logger.info(str(driver.__dict__))
|
|
driver.snooze(1)
|