package wsdaemon
import (
"context"
"os"
"testing"
"github.com/gitpod-io/gitpod/test/pkg/integration"
"sigs.k8s.io/e2e-framework/pkg/env"
)
var (
testEnv env.Environment
username string
namespace string
kubeconfig string
)
func TestMain(m *testing.M) {
username, namespace, testEnv, _, kubeconfig, _ = integration.Setup(context.Background())
os.Exit(testEnv.Run(m))
}