(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func TestExtensions(t *testing.T) { |
| 98 | var tsEnv testScriptEnv |
| 99 | if err := tsEnv.fromEnv(); err != nil { |
| 100 | t.Fatal(err) |
| 101 | } |
| 102 | |
| 103 | testscript.Run(t, testScriptParamsFor(tsEnv, "extension")) |
| 104 | } |
| 105 | |
| 106 | func TestIssues(t *testing.T) { |
| 107 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected