diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-17 15:06:42 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-17 15:06:42 -0800 |
| commit | 95ed6be5c6539d3b5c44fd8505f82cf0e45a7ebc (patch) | |
| tree | f28828784e45dc4073b5176d6585c83bc1f8d27e /frontend-vanilla/src/regression.test.ts | |
| parent | 7ad8d0079a09e234cb1b01db47957b16e36c8c07 (diff) | |
| download | neko-95ed6be5c6539d3b5c44fd8505f82cf0e45a7ebc.tar.gz neko-95ed6be5c6539d3b5c44fd8505f82cf0e45a7ebc.tar.bz2 neko-95ed6be5c6539d3b5c44fd8505f82cf0e45a7ebc.zip | |
Refine Settings UI: Fix dark mode text colors, split font controls for headers and body, update monospace stack, and soft-deprecate tags
Diffstat (limited to 'frontend-vanilla/src/regression.test.ts')
| -rw-r--r-- | frontend-vanilla/src/regression.test.ts | 4 |
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'); |
