shad-go/tools/testtool/commands/report_test.go
Fedor Korotkiy 6a83a4f1fc Task grading
2020-02-13 02:10:17 +03:00

15 lines
245 B
Go

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))
}