mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07: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 @@ namespace NzbDrone.Automation.Test
|
||||||
[OneTimeSetUp]
|
[OneTimeSetUp]
|
||||||
public void SmokeTestSetup()
|
public void SmokeTestSetup()
|
||||||
{
|
{
|
||||||
driver = new FirefoxDriver();
|
var options = new FirefoxOptions();
|
||||||
|
options.AddArguments("--headless");
|
||||||
|
driver = new FirefoxDriver(options);
|
||||||
|
|
||||||
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
||||||
_runner.KillAll();
|
_runner.KillAll();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue