
* test * undo test * Added aws SQS endpoint * Added aws vendor * Bug fixes * enabled NOCOPY in build.sh
14 lines
217 B
Go
14 lines
217 B
Go
// +build integration
|
|
|
|
//Package performance provides gucumber integration tests support.
|
|
package performance
|
|
|
|
import (
|
|
"github.com/gucumber/gucumber"
|
|
)
|
|
|
|
func init() {
|
|
gucumber.Before("@performance", func() {
|
|
})
|
|
}
|