summaryrefslogtreecommitdiff
path: root/searx/testing.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2019-07-16 11:03:52 +0200
committerGitHub <noreply@github.com>2019-07-16 11:03:52 +0200
commit4d38b8bef7de16f741d20839ee5d31a48d499f81 (patch)
tree3ad42e60342e90d577c1f83c5e726665163a4a7d /searx/testing.py
parent3b8b862d8c31e8e55f2fc6e0de74a0fcbb899c76 (diff)
parentf750df871318c435c40c7d910e5dcd47b350e73d (diff)
Merge branch 'master' into bang_fixes
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)