(t *testing.T)
| 114 | } |
| 115 | |
| 116 | func TestProject(t *testing.T) { |
| 117 | var tsEnv testScriptEnv |
| 118 | if err := tsEnv.fromEnv(); err != nil { |
| 119 | t.Fatal(err) |
| 120 | } |
| 121 | |
| 122 | testscript.Run(t, testScriptParamsFor(tsEnv, "project")) |
| 123 | } |
| 124 | |
| 125 | func TestPullRequests(t *testing.T) { |
| 126 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected