Skip to content

Commit

Permalink
Update packages/vanilla/test/renderers/RadioGroupControl.test.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
sdirix authored Oct 4, 2021
1 parent 42dbbbf commit 8a7db24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vanilla/test/renderers/RadioGroupControl.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('Radio group control', () => {
);

const radioButtons = wrapper.find('input[type="radio"]');
//expect(radioButtons).toHaveLength(3);
expect(radioButtons).toHaveLength(3);
const currentlyChecked = radioButtons.filter('input[checked=true]');
expect(currentlyChecked).toHaveLength(1);
expect((currentlyChecked.getDOMNode() as HTMLInputElement).value).toBe('b');
Expand Down

0 comments on commit 8a7db24

Please sign in to comment.