summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-01 21:56:08 +0300
committerPaul Buetow <paul@buetow.org>2026-05-01 21:56:08 +0300
commit937fa48eaf1a87698f715edf976f77adfe5dc8a1 (patch)
treedc983fe04c0b5ab25d197e34c51c7fc7504567c4
parentbfa15ab47f2c77c403085fc41faae9e50c1927f9 (diff)
Task 7: cover tropicale font assets in integration tests
-rw-r--r--integrationtests/integration_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/integrationtests/integration_test.go b/integrationtests/integration_test.go
index ae67dfc..3b7e4ea 100644
--- a/integrationtests/integration_test.go
+++ b/integrationtests/integration_test.go
@@ -466,6 +466,11 @@ func TestThemeSelection(t *testing.T) {
"orbitron-v35-latin_latin-ext-regular.woff2",
"share-tech-mono-v16-latin_latin-ext-regular.woff2",
},
+ "tropicale": {
+ "FONT_LICENSE.txt",
+ "quicksand-v37-latin_latin-ext-500.woff2",
+ "quicksand-v37-latin_latin-ext-regular.woff2",
+ },
}
fontURLs := map[string][]string{
"matrix": {"url('VT323-Regular.woff2')"},
@@ -475,6 +480,10 @@ func TestThemeSelection(t *testing.T) {
"url('orbitron-v35-latin_latin-ext-regular.woff2')",
"url('share-tech-mono-v16-latin_latin-ext-regular.woff2')",
},
+ "tropicale": {
+ "url('quicksand-v37-latin_latin-ext-500.woff2')",
+ "url('quicksand-v37-latin_latin-ext-regular.woff2')",
+ },
}
if assets, ok := fontAssets[theme]; ok {
themeDir := filepath.Join(outputDir, "themes", theme)