How to start browser in incognito window in JS-Jest?

How to start browser in incognito window in JS-Jest?

Hey Toby,

Use the below command in the capabilities:

var options = new ChromeOptions();
    options.AddArguments("---incognito");

Refer below for more info: