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 b6bd7ef commit 152e5a8Copy full SHA for 152e5a8
tests/SLDSButton/button.test.jsx
@@ -49,12 +49,6 @@ describe('SLDSButton: ', function(){
49
expect(size).to.not.equal(undefined);
50
});
51
52
- it('without prop specified, renders icon position on left side', function() {
53
- let button = generateButton(<SLDSButton label='Test' iconName='download' />);
54
- let position = button.getElementsByClassName("slds-button__icon--left")[0];
55
- expect(position).to.not.equal(undefined);
56
- });
57
-
58
it('renders icon position', function() {
59
let button = generateButton(<SLDSButton label='Test' iconName='download' iconPosition='right' />);
60
let position = button.getElementsByClassName("slds-button__icon--right")[0];
0 commit comments