Add DefaultUIVolume option. Closes #1679

This commit is contained in:
Deluan 2022-11-11 16:31:28 -05:00
parent ff6c8f7e9d
commit 1467036efd
6 changed files with 18 additions and 1 deletions

View file

@ -170,6 +170,17 @@ var _ = Describe("serveIndex", func() {
Expect(config).To(HaveKeyWithValue("defaultLanguage", "pt"))
})
It("sets the defaultUIVolume", func() {
conf.Server.DefaultUIVolume = 45
r := httptest.NewRequest("GET", "/index.html", nil)
w := httptest.NewRecorder()
serveIndex(ds, fs)(w, r)
config := extractAppConfig(w.Body.String())
Expect(config).To(HaveKeyWithValue("defaultUIVolume", float64(45)))
})
It("sets the enableCoverAnimation", func() {
conf.Server.EnableCoverAnimation = true
r := httptest.NewRequest("GET", "/index.html", nil)