TestScriptsWithProjects runs testscripts on the devbox-projects in the testscripts folder.
(t *testing.T)
| 36 | |
| 37 | // TestScriptsWithProjects runs testscripts on the devbox-projects in the testscripts folder. |
| 38 | func TestScriptsWithProjects(t *testing.T) { |
| 39 | isOn, err := strconv.ParseBool(os.Getenv(runProjectTests)) |
| 40 | if err != nil || !isOn { |
| 41 | t.Skipf("Skipping TestScriptsWithProjects. To enable, set %s=1.", runProjectTests) |
| 42 | } |
| 43 | |
| 44 | testrunner.RunDevboxTestscripts(t, ".") |
| 45 | } |
nothing calls this directly
no test coverage detected