summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2024-03-27 16:55:18 +0100
committerFlorian Bruhin <me@the-compiler.org>2024-03-27 16:55:18 +0100
commit7a969a2d54633f334f7ba2002515471eec472c59 (patch)
treedf4d891c619bf81c7595c8024ecea8d296ff1edd /tests
parent481542844db79ee58740e8324ecc1090e3738c35 (diff)
downloadqutebrowser-7a969a2d54633f334f7ba2002515471eec472c59.tar.gz
qutebrowser-7a969a2d54633f334f7ba2002515471eec472c59.zip
Add caret browsing debug logging
Diffstat (limited to 'tests')
-rw-r--r--tests/end2end/fixtures/quteprocess.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index a74445507..a6ad157f8 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -405,9 +405,11 @@ class QuteProc(testprocess.Process):
backend = 'webengine' if self.request.config.webengine else 'webkit'
args = ['--debug', '--no-err-windows', '--temp-basedir',
'--json-logging', '--loglevel', 'vdebug',
- '--backend', backend, '--debug-flag', 'no-sql-history',
- '--debug-flag', 'werror', '--debug-flag',
- 'test-notification-service',
+ '--backend', backend,
+ '--debug-flag', 'no-sql-history',
+ '--debug-flag', 'werror',
+ '--debug-flag', 'test-notification-service',
+ '--debug-flag', 'caret',
'--qt-flag', 'disable-features=PaintHoldingCrossOrigin']
if self.request.config.webengine and testutils.disable_seccomp_bpf_sandbox():