14 lines
198 B
Go
14 lines
198 B
Go
|
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))
|
||
|
}
|