Skip to content

Commit cd8387d

Browse files
committed
fix: e2e
1 parent c3987d4 commit cd8387d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

test/e2e/framework/dashboard.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ dashboard_configuration:
9595
host: "0.0.0.0"
9696
cron_spec: "@every 1s"
9797
plugins:
98+
- error-page
9899
- real-ip
99100
#- ai
100101
- error-page

test/e2e/framework/manifests/dp.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ data:
3939
allow_admin:
4040
- all
4141
plugins:
42+
- error-page
4243
- real-ip
4344
- ai
4445
- client-control

test/e2e/gatewayapi/gatewayproxy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
1212
)
1313

14-
var _ = FDescribe("Test GatewayProxy", func() {
14+
var _ = Describe("Test GatewayProxy", func() {
1515
s := scaffold.NewDefaultScaffold()
1616

1717
var defaultGatewayClass = `
@@ -252,7 +252,7 @@ spec:
252252
It("Should work OK with error-page", func() {
253253
By("Update GatewayProxy with PluginMetadata")
254254
err = s.CreateResourceFromString(gatewayProxyWithPluginMetadata)
255-
Ω(err).ShouldNot(HaveOccurred())
255+
Expect(err).ShouldNot(HaveOccurred())
256256
time.Sleep(5 * time.Second)
257257

258258
By("Create HTTPRoute for Gateway with GatewayProxy")

0 commit comments

Comments
 (0)