alice-lg/ui/assets_test.go

14 lines
194 B
Go
Raw Permalink Normal View History

2022-01-21 19:38:54 +01:00
package ui
import (
"testing"
)
func TestPresenceOfIndexHTML(t *testing.T) {
content, err := Assets.ReadFile("build/index.html")
if err != nil {
t.Fatal(err)
}
t.Log(string(content))
}