(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestAPI(t *testing.T) { |
| 36 | var tsEnv testScriptEnv |
| 37 | if err := tsEnv.fromEnv(); err != nil { |
| 38 | t.Fatal(err) |
| 39 | } |
| 40 | |
| 41 | testscript.Run(t, testScriptParamsFor(tsEnv, "api")) |
| 42 | } |
| 43 | |
| 44 | func TestAuth(t *testing.T) { |
| 45 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected