fix(run-ui-tests): Set default browser as chrome

Co-authored-by: Suraj Shetty <surajshetty3416@gmail.com>
This commit is contained in:
Gavin D'souza 2023-09-25 11:11:13 +05:30
parent a5f709b468
commit b19c569761
No known key found for this signature in database
GPG key ID: 3A7BF4D4340DE6F7

View file

@ -850,7 +850,7 @@ def run_parallel_tests(
@click.option("--headless", is_flag=True, help="Run UI Test in headless mode")
@click.option("--parallel", is_flag=True, help="Run UI Test in parallel mode")
@click.option("--with-coverage", is_flag=True, help="Generate coverage report")
@click.option("--browser", default="electron", help="Browser to run tests in")
@click.option("--browser", default="chrome", help="Browser to run tests in")
@click.option("--ci-build-id")
@pass_context
def run_ui_tests(
@ -859,7 +859,7 @@ def run_ui_tests(
headless=False,
parallel=True,
with_coverage=False,
browser="electron",
browser="chrome",
ci_build_id=None,
cypressargs=None,
):