diff options
| -rw-r--r-- | integrationtests/integration_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/integrationtests/integration_test.go b/integrationtests/integration_test.go index e3737f4..44913c5 100644 --- a/integrationtests/integration_test.go +++ b/integrationtests/integration_test.go @@ -408,6 +408,10 @@ func TestIndexHTMLBakesSounds(t *testing.T) { // TestThemeSelection verifies that every registered theme renders a valid // index.html containing core structural elements (post text, nav script). func TestThemeSelection(t *testing.T) { + if testing.Short() { + t.Skip("skipping long-running theme selection integration test in short mode") + } + themes := generator.ListThemes() if len(themes) == 0 { t.Fatal("no themes returned by ListThemes()") |
