We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644ac7c commit 38a66acCopy full SHA for 38a66ac
makefile
@@ -35,7 +35,7 @@ ifeq ($(OS),Windows_NT)
35
else
36
@wget -O lint-project.sh https://raw.githubusercontent.com/moov-io/infra/master/go/lint-project.sh
37
@chmod +x ./lint-project.sh
38
- COVER_THRESHOLD=50.0 ./lint-project.sh
+ COVER_THRESHOLD=45.0 ./lint-project.sh
39
endif
40
41
.PHONY: teardown
webui/webui_test.go
@@ -0,0 +1,13 @@
1
+package webui
2
+
3
+import (
4
+ "testing"
5
6
+ "github.com/stretchr/testify/require"
7
+)
8
9
+func TestWebRoot(t *testing.T) {
10
+ bs, err := WebRoot.ReadFile("index.html.tmpl")
11
+ require.NoError(t, err)
12
+ require.NotEmpty(t, bs)
13
+}
0 commit comments