fix(run-ui-tests): Set default browser as chrome
Co-authored-by: Suraj Shetty <surajshetty3416@gmail.com>
This commit is contained in:
parent
a5f709b468
commit
b19c569761
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue