From 55187265fe6200b5f1c757091d9d63657d9ebd32 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Sat, 8 Oct 2022 22:26:46 +0530 Subject: [PATCH] feat(testing): Trial with 3 workers --- scripts/playwright/pages/Grid.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/playwright/pages/Grid.ts b/scripts/playwright/pages/Grid.ts index a22bd6eded..3d13b1fdd8 100644 --- a/scripts/playwright/pages/Grid.ts +++ b/scripts/playwright/pages/Grid.ts @@ -34,7 +34,7 @@ export class GridPage { } async verifyRowDoesNotExist({index}: {index: number}) { - return expect(await this.page.locator(`td[data-pw="cell-Title-${index}"]`)).toBeHidden(); + return expect(await this.page.locator(`td[data-pw="cell-Title-${index}"]`)).toBeFalsy(); } async deleteRow(index: number) {