(t *testing.T)
| 149 | } |
| 150 | |
| 151 | func TestProject(t *testing.T) { |
| 152 | var tsEnv testScriptEnv |
| 153 | if err := tsEnv.fromEnv(); err != nil { |
| 154 | t.Fatal(err) |
| 155 | } |
| 156 | |
| 157 | testscript.Run(t, testScriptParamsFor(tsEnv, "project")) |
| 158 | } |
| 159 | |
| 160 | func TestPullRequests(t *testing.T) { |
| 161 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected