aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src/regression.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-vanilla/src/regression.test.ts')
-rw-r--r--frontend-vanilla/src/regression.test.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend-vanilla/src/regression.test.ts b/frontend-vanilla/src/regression.test.ts
index 0c10d95..972b221 100644
--- a/frontend-vanilla/src/regression.test.ts
+++ b/frontend-vanilla/src/regression.test.ts
@@ -231,7 +231,7 @@ describe('NK-t8qnrh: Feed item description links have no underlines', () => {
});
});
-// NK-mcl01m: Sidebar order should be filters → search → "+ new" → Feeds → Tags
+// NK-mcl01m: Sidebar order should be filters → search → "+ new" → Feeds
describe('NK-mcl01m: Sidebar section order', () => {
beforeEach(() => {
document.body.innerHTML = '<div id="app"></div>';
@@ -251,6 +251,7 @@ describe('NK-mcl01m: Sidebar section order', () => {
expect(position & Node.DOCUMENT_POSITION_FOLLOWING).toBeTruthy();
});
+ /* FIXME: Tags feature soft-deprecated
it('section-feeds appears before section-tags in the sidebar', () => {
const sidebar = document.getElementById('sidebar');
const sectionFeeds = sidebar!.querySelector('#section-feeds');
@@ -261,6 +262,7 @@ describe('NK-mcl01m: Sidebar section order', () => {
const position = sectionFeeds!.compareDocumentPosition(sectionTags!);
expect(position & Node.DOCUMENT_POSITION_FOLLOWING).toBeTruthy();
});
+ */
it('search input appears after filter-list and before section-feeds', () => {
const sidebar = document.getElementById('sidebar');