summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-12-04 16:44:56 +0100
committerFlorian Bruhin <me@the-compiler.org>2023-12-04 16:44:56 +0100
commit21c7699eaced839b4645dabfbef05a7ff7f2de36 (patch)
tree6810fc96efdba1408620c28b764006d1b4619023 /tests
parent0ffb04cfc0f641da773ab6084c209b97328d4cbb (diff)
downloadqutebrowser-21c7699eaced839b4645dabfbef05a7ff7f2de36.tar.gz
qutebrowser-21c7699eaced839b4645dabfbef05a7ff7f2de36.zip
Add content.javascript.legacy_touch_events setting
Closes #7814
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/config/test_qtargs.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/config/test_qtargs.py b/tests/unit/config/test_qtargs.py
index 2414d4ba9..d8980bb53 100644
--- a/tests/unit/config/test_qtargs.py
+++ b/tests/unit/config/test_qtargs.py
@@ -77,6 +77,7 @@ class TestQtArgs:
])
def test_qt_args(self, monkeypatch, config_stub, args, expected, parser):
"""Test commandline with no Qt arguments given."""
+ expected.append("--touch-events=disabled") # passed unconditionally
parsed = parser.parse_args(args)
assert qtargs.qt_args(parsed) == expected