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:
parent
4170ea509b
commit
4a810d90a7
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue