aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/manager/http_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/manager: add common page header typeDmitry Vyukov2024-11-081-2/+3
| | | | | | Add common page header to every page. This is similar to how we do in the dashboard app, and it will allow to have a common HTML page header.
* pkg/manager: add test for all HTTP templatesDmitry Vyukov2024-11-071-0/+22
It's easy to make mistakes in templates that lead to runtime panics. Catch them during testing. This required to convert some pointers to values for things that must not be nil. Otherwise the randomized test can pass nil for the objects and templates fail.