1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-02 21:15:05 +00:00

run automation tests in headless mode

This commit is contained in:
Qstick 2019-08-12 19:17:18 -04:00
parent 4170ea509b
commit 4a810d90a7

View file

@ -34,7 +34,9 @@ public AutomationTest()
[OneTimeSetUp]
public void SmokeTestSetup()
{
driver = new FirefoxDriver();
var options = new FirefoxOptions();
options.AddArguments("--headless");
driver = new FirefoxDriver(options);
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
_runner.KillAll();