increase default timeout

This commit is contained in:
Daniel 2023-12-15 16:13:11 +01:00
parent 43420bdd10
commit cb979a7865
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ def run():
parser.add_argument("--env_paths", type=str, help="List of loaded env files separated with ;", required=True)
parser.add_argument("--recipes_dir", type=Path, help="Dir of abra recipes and respective runners", required=True)
parser.add_argument("--output_dir", type=Path, help="Dir of test outputs", required=True)
parser.add_argument("--timeout", type=int, help="Set Playwright timeout in ms", default=20_000)
parser.add_argument("--timeout", type=int, help="Set Playwright timeout in ms", default=30_000)
parser.add_argument("--debug", action="store_true", help="Enable Playwright debug mode")
parser.add_argument("--resume", action="store_true", help="Re-run the most recent test, skipping passed tests")
parser.add_argument("--session_id", help="Session dir name (inside output_dir). Overwrites --resume")