1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix click .wrap-logs click event

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-12-01 12:30:56 +03:00
parent 13257f03b2
commit d19e65bf23

View File

@ -25,7 +25,6 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => {
beforeEach(async () => { beforeEach(async () => {
({ window, cleanup } = await utils.start()); ({ window, cleanup } = await utils.start());
window.setViewportSize({ width: 1200, height: 850 });
await utils.clickWelcomeButton(window); await utils.clickWelcomeButton(window);
frame = await utils.lauchMinikubeClusterFromCatalog(window); frame = await utils.lauchMinikubeClusterFromCatalog(window);
@ -137,7 +136,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => {
10 * 60 * 1000, 10 * 60 * 1000,
); );
it.only( it(
"should create a pod with logs and wrap log lines", "should create a pod with logs and wrap log lines",
async () => { async () => {
await navigateToPods(frame); await navigateToPods(frame);
@ -194,12 +193,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => {
expect(lineBoundingBox?.height).toBeLessThan(30); expect(lineBoundingBox?.height).toBeLessThan(30);
const showWrapLogsCheckbox = await frame.waitForSelector( await frame.click("[data-testid='log-controls'] .wrap-logs");
"[data-testid='log-controls'] .wrap-logs",
);
await showWrapLogsCheckbox.click();
const wrappedLogLine = await frame.waitForSelector("[data-testid=pod-log-list] [data-index='0']"); const wrappedLogLine = await frame.waitForSelector("[data-testid=pod-log-list] [data-index='0']");
const wrappedLineBoundingBox = await wrappedLogLine.boundingBox(); const wrappedLineBoundingBox = await wrappedLogLine.boundingBox();