14 lines
330 B
Python
14 lines
330 B
Python
# SPDX-FileCopyrightText: Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import pytest
|
|
|
|
import pytest_bdd as bdd
|
|
bdd.scenarios('scroll.feature')
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def turn_on_scroll_logging(quteproc):
|
|
quteproc.turn_on_scroll_logging(no_scroll_filtering=True)
|