github.com/wawandco/oxplugins@v0.7.11/lifecycle/test/tester.go (about) 1 package test 2 3 import "context" 4 5 // Tester runs a set of tests depending on the tools you 6 // want to test, this could include 7 // - Go test (go test ...) 8 // - Linting (gofmt/metalinter/milo) 9 // - Yarn/NPM tests 10 type Tester interface { 11 Test(context.Context, string, []string) error 12 }