1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/ui/assets_test.go

14 lines
194 B
Go

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))
}