feat(makefile): improvements to the makefile and use gotestsum [EE-5439] (#8906)
* makefile improvements. use gotestsum * increase timeout
This commit is contained in:
@@ -18,7 +18,7 @@ func TestGet(t *testing.T) {
|
||||
return
|
||||
}
|
||||
result := Get(data, "data.yesterday", "sunrise")
|
||||
fmt.Printf("result: %s", result)
|
||||
fmt.Printf("result: %s\n", result)
|
||||
expected := "06:19"
|
||||
assert.Equal(t, expected, result)
|
||||
})
|
||||
@@ -31,7 +31,7 @@ func TestGet(t *testing.T) {
|
||||
return
|
||||
}
|
||||
result := Get(data, "data.yesterday", "sunrise")
|
||||
fmt.Printf("result: %s", result)
|
||||
fmt.Printf("result: %s\n", result)
|
||||
expected := ""
|
||||
assert.Equal(t, expected, result)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user