summaryrefslogtreecommitdiff
path: root/tests/e2e
diff options
context:
space:
mode:
authorShelley-BaoYue <baoyue2@huawei.com>2022-09-24 18:28:27 +0800
committerShelley-BaoYue <baoyue2@huawei.com>2022-09-24 19:37:06 +0800
commit045286396aec62f2c466c9bc6fa5af3e9a756f03 (patch)
treeff4506f19a536a1a3ad4033c9993445e5e0697e6 /tests/e2e
parentadd edgecore v1alpha2 config (diff)
downloadkubeedge-045286396aec62f2c466c9bc6fa5af3e9a756f03.tar.gz
undo edge deploy test & e2e statefulset
Signed-off-by: Shelley-BaoYue <baoyue2@huawei.com>
Diffstat (limited to 'tests/e2e')
-rw-r--r--tests/e2e/deployment/deployment_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/e2e/deployment/deployment_test.go b/tests/e2e/deployment/deployment_test.go
index 6fd386a78..1a8b5ab69 100644
--- a/tests/e2e/deployment/deployment_test.go
+++ b/tests/e2e/deployment/deployment_test.go
@@ -17,7 +17,6 @@ limitations under the License.
package deployment
import (
- "context"
"fmt"
"net/http"
"time"
@@ -28,7 +27,6 @@ import (
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/util/wait"
clientset "k8s.io/client-go/kubernetes"
"github.com/kubeedge/kubeedge/tests/e2e/constants"
@@ -264,6 +262,7 @@ var _ = Describe("Application deployment test in E2E scenario", func() {
utils.WaitforPodsRunning(ctx.Cfg.KubeConfigPath, *podList, 240*time.Second)
})
+ /*
It("Delete statefulSet pod multi times", func() {
replica := int32(2)
// Generate the random string and assign as a UID
@@ -304,6 +303,6 @@ var _ = Describe("Application deployment test in E2E scenario", func() {
})
Expect(err).To(BeNil())
}
- })
+ }*/
})
})