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