We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4321e09 commit 8491174Copy full SHA for 8491174
src/components/Table/__tests__/Table.spec.tsx
@@ -213,6 +213,14 @@ test.describe('Table', () => {
213
await page.keyboard.press('Tab');
214
const label3 = await getFocusedElementParentInnerText();
215
expect(label3).toContain('column3');
216
+
217
+ await page.keyboard.press('Shift+Tab');
218
+ const label4 = await getFocusedElementParentInnerText();
219
+ expect(label4).toContain('column2');
220
221
222
+ const label5 = await getFocusedElementParentInnerText();
223
+ expect(label5).toContain('id');
224
});
225
226
0 commit comments