Files
fn-serverless/test/fn-api-tests/init_test.go

14 lines
188 B
Go

package tests
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
// call flag.Parse() here if TestMain uses flags
s := SetupDefaultSuite()
defer s.Cancel()
os.Exit(m.Run())
}