(t *testing.T)
| 104 | } |
| 105 | |
| 106 | func TestExtensions(t *testing.T) { |
| 107 | var tsEnv testScriptEnv |
| 108 | if err := tsEnv.fromEnv(); err != nil { |
| 109 | t.Fatal(err) |
| 110 | } |
| 111 | |
| 112 | testscript.Run(t, testScriptParamsFor(t, tsEnv, "extension")) |
| 113 | } |
| 114 | |
| 115 | func TestIssues(t *testing.T) { |
| 116 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected