From 85513859f802078b8c0ea982a6a9de996116617c Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Tue, 29 Nov 2022 13:14:04 +0300 Subject: [PATCH] Change namespace to default Signed-off-by: Alex Andreev --- integration/__tests__/cluster-pages.tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/__tests__/cluster-pages.tests.ts b/integration/__tests__/cluster-pages.tests.ts index 7dd27c7c9c..c8f06f2784 100644 --- a/integration/__tests__/cluster-pages.tests.ts +++ b/integration/__tests__/cluster-pages.tests.ts @@ -168,7 +168,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => { await monacoEditor.press("Enter", { delay: 10 }); await monacoEditor.type(` name: ${testPodName}`, { delay: 10 }); await monacoEditor.press("Enter", { delay: 10 }); - await monacoEditor.type(`namespace: ${TEST_NAMESPACE}`, { delay: 10 }); + await monacoEditor.type(`namespace: default`, { delay: 10 }); await monacoEditor.press("Enter", { delay: 10 }); await monacoEditor.press("Backspace", { delay: 10 }); await monacoEditor.type("spec:", { delay: 10 }); @@ -201,7 +201,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => { boundingBox = await logLine.boundingBox(); - expect(boundingBox?.height).toBeGreaterThan(50); + expect(boundingBox?.height).toBeGreaterThan(30); }, 10 * 60 * 1000, );