Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
amanmahajan7 committed Nov 22, 2024
1 parent 70b6c9c commit 0c9cce3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/browser/label.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test('should set label and description', () => {
'aria-description': 'description',
'aria-describedby': 'describedby',
'data-testid': 'testid',
'data-custom': 'custom'
'data-cy': 'cy'
});

const grid = getGrid().element();
Expand All @@ -18,5 +18,5 @@ test('should set label and description', () => {
expect(grid).toHaveAttribute('aria-description', 'description');
expect(grid).toHaveAttribute('aria-describedby', 'describedby');
expect(grid).toHaveAttribute('data-testid', 'testid');
expect(grid).toHaveAttribute('data-custom', 'custom');
expect(grid).toHaveAttribute('data-cy', 'cy');
});

0 comments on commit 0c9cce3

Please sign in to comment.