summaryrefslogtreecommitdiff
path: root/searx/testing.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2019-07-13 16:37:39 +0200
committerGitHub <noreply@github.com>2019-07-13 16:37:39 +0200
commit5b50e116b8c66059a6cf4344989210f4c80093f2 (patch)
tree14c27be89360b938264033658070589bc5539a30 /searx/testing.py
parent3faaf34e25db09988b113f74feb6227d3df3db95 (diff)
parent45702b77ca4759043f3b87f24983039f21ba2c32 (diff)
Merge pull request #1629 from dalf/docker
Update Docker image
Diffstat (limited to 'searx/testing.py')
-rw-r--r--searx/testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/testing.py b/searx/testing.py
index 647c236fd..08a53e3f4 100644
--- a/searx/testing.py
+++ b/searx/testing.py
@@ -71,7 +71,7 @@ class SearxRobotLayer():
def run_robot_tests(tests):
print('Running {0} tests'.format(len(tests)))
for test in tests:
- with Browser() as browser:
+ with Browser('firefox', headless=True) as browser:
test(browser)