github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/plugins/base/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 }