"""Finch smoke test runner script.
This is the runner script that is executed in the swarming bot. It looks up
the test cases, downloads chrome/chromedriver if needed, and sets up webdriver
environment.
This script can be invoked from the root as:
testing/scripts/run_isolated_script_test.py \
testing/variations/smoke/run_webdriver_tests.py
**Working in progres**
"""
import pytest
import sys
@pytest.fixture
def webdriver():
return None
def test_load_seed_no_crash(webdriver):
assert webdriver == None
if __name__ == "__main__":
sys.exit(pytest.main(["-qq", __file__]))