Skip to content

Commit 8491174

Browse files
committed
fixup! fixup! Transform miscellaneous section form jest to playwright (#595)
1 parent 4321e09 commit 8491174

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/components/Table/__tests__/Table.spec.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,14 @@ test.describe('Table', () => {
213213
await page.keyboard.press('Tab');
214214
const label3 = await getFocusedElementParentInnerText();
215215
expect(label3).toContain('column3');
216+
217+
await page.keyboard.press('Shift+Tab');
218+
const label4 = await getFocusedElementParentInnerText();
219+
expect(label4).toContain('column2');
220+
221+
await page.keyboard.press('Shift+Tab');
222+
const label5 = await getFocusedElementParentInnerText();
223+
expect(label5).toContain('id');
216224
});
217225
});
218226
});

0 commit comments

Comments
 (0)