(t *testing.T)
| 158 | } |
| 159 | |
| 160 | func TestProject(t *testing.T) { |
| 161 | var tsEnv testScriptEnv |
| 162 | if err := tsEnv.fromEnv(); err != nil { |
| 163 | t.Fatal(err) |
| 164 | } |
| 165 | |
| 166 | testscript.Run(t, testScriptParamsFor(t, tsEnv, "project")) |
| 167 | } |
| 168 | |
| 169 | func TestPullRequests(t *testing.T) { |
| 170 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected