mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
14 lines
194 B
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))
|
|
}
|