shad-go/tools/testtool/commands/report_test.go

16 lines
245 B
Go
Raw Normal View History

2020-02-12 22:54:25 +00:00
package commands
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestReport(t *testing.T) {
if testingToken == "" {
t.Skip("token is missing")
}
require.NoError(t, reportTestResults(testingToken, "sum", "1", false))
}