(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestExtensions(t *testing.T) { |
| 63 | var tsEnv testScriptEnv |
| 64 | if err := tsEnv.fromEnv(); err != nil { |
| 65 | t.Fatal(err) |
| 66 | } |
| 67 | |
| 68 | testscript.Run(t, testScriptParamsFor(tsEnv, "extension")) |
| 69 | } |
| 70 | |
| 71 | func TestIssues(t *testing.T) { |
| 72 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected