(t *testing.T)
| 68 | } |
| 69 | |
| 70 | func TestAPI(t *testing.T) { |
| 71 | var tsEnv testScriptEnv |
| 72 | if err := tsEnv.fromEnv(); err != nil { |
| 73 | t.Fatal(err) |
| 74 | } |
| 75 | |
| 76 | testscript.Run(t, testScriptParamsFor(tsEnv, "api")) |
| 77 | } |
| 78 | |
| 79 | func TestAuth(t *testing.T) { |
| 80 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected