alice-lg/client/assets_test.go

14 lines
198 B
Go
Raw Normal View History

2021-03-22 15:41:36 +01:00
package client
import (
"testing"
)
func TestPresenceOfIndexHTML(t *testing.T) {
content, err := Assets.ReadFile("build/index.html")
if err != nil {
t.Fatal(err)
}
t.Log(string(content))
}