Defining list length in Template seems to work now

This commit is contained in:
2025-12-19 10:47:05 +01:00
parent 9d1398b397
commit 59755c4516
17 changed files with 773 additions and 134 deletions
+3 -3
View File
@@ -151,9 +151,9 @@ func TestIntegration_TemplateMetadata(t *testing.T) {
expectedMax int
}{
{"page1_stats.html", "skills_column1", 29},
{"page2_play.html", "skills_learned", 24},
{"page3_spell.html", "spells_left", 20},
{"page3_spell.html", "spells_right", 10},
{"page2_play.html", "skills_learned", 18}, // From template: MAX: 18
{"page3_spell.html", "spells_left", 26}, // From template: MAX: 26
{"page3_spell.html", "spells_right", 15}, // From template: MAX: 15
{"page4_equip.html", "equipment_worn", 10},
}