From da2687174f7fea5d7512f6118caf64d6edf7fea9 Mon Sep 17 00:00:00 2001 From: tisilent Date: Tue, 19 Sep 2023 22:49:53 +0800 Subject: [PATCH] :lipstick: --- test/playwright/SharedRendererTests.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/playwright/SharedRendererTests.ts b/test/playwright/SharedRendererTests.ts index 1fe67351..3911f0c0 100644 --- a/test/playwright/SharedRendererTests.ts +++ b/test/playwright/SharedRendererTests.ts @@ -1161,9 +1161,10 @@ export function injectSharedRendererTests(ctx: ISharedRendererTestContext): void await ctx.value.proxy.scrollLines(-2); const rows = await ctx.value.proxy.rows; // block cursor style - await pollFor(ctx.value.page, () => getCellColor(ctx.value, 1, rows), [0, 0, 0, 255]); + await pollFor(ctx.value.page, () => getCellColor(ctx.value, 1, rows), [0, 0, 255, 255]); await ctx.value.proxy.blur(); - // other cursor style + frameDetails = undefined; + // outlink cursor style await pollFor(ctx.value.page, () => getCellColor(ctx.value, 1, rows), [0, 0, 0, 255]); await pollFor(ctx.value.page, () => getCellColor(ctx.value, 1, rows, CellColorPosition.FIRST), [0, 0, 255, 255]); });