How do I pass idleTimeout while running our Jest automation tests?

How do I pass idleTimeout while running our Jest automation tests?

Hi Tim!

In order to pass idleTimeout in your Jest scripts, you can use the below capability.

$capability = array(
        "browserName" => "Chrome",
        "browserVersion" => "15.0",
        "LT:Options" => array(
                "username" => "LT_USERNAME",
                "accessKey" => "LT_ACCESS_KEY",
                "platformName" => "MacOS Monterey",
                "idleTimout" => "125",
                "project" => "Untitled"
        )
);