summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormrpaulblack <paul@paulgo.io>2022-02-21 22:18:48 +0100
committermrpaulblack <paul@paulgo.io>2022-02-26 22:31:47 +0100
commit21e3c4051689318d887da6bd0fd5ff9eaf077ae2 (patch)
treeb7ad1efba18fec381efb140f36f6d67d6aa27445 /tests
parent3408d061aab9abc6168fec9bbc6deab71b236dac (diff)
[simple theme] replace Image_layout.js with flexbox CS impl.
* drop image_layout.js from simple theme * move image_layout.js to oscar theme and delete common js dir (since its empty now) * align top position of image detail modal with bottom position of search header * use flexbox to display images; row height can be set via @results-image-row-height in defenitions.less * display span title underneath each image with a max width of 12rem * increase margin and padding around image article on desktop and tablet * make article height smaller on phone layout (height of 6rem) to display more content on current view * remove content from result, if the title and content matches * use a group that cotains the flex image article, if images are mixed with other categories * fix pylint issues in webapp.py * use the default.html result template in unit tests (thanks @return42)
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_webapp.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py
index a50bd5c7..aed6f2dd 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -33,7 +33,8 @@ class ViewsTestCase(SearxTestCase):
'engine': 'startpage',
'parsed_url': ParseResult(
scheme='http', netloc='first.test.xyz', path='/', params='', query='', fragment=''
- ), # noqa
+ ),
+ 'template': 'default.html',
},
{
'content': 'second test content',
@@ -43,7 +44,8 @@ class ViewsTestCase(SearxTestCase):
'engine': 'youtube',
'parsed_url': ParseResult(
scheme='http', netloc='second.test.xyz', path='/', params='', query='', fragment=''
- ), # noqa
+ ),
+ 'template': 'default.html',
},
]