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 d8fcfdf commit 66ea305Copy full SHA for 66ea305
src/components/button/__tests__/index.spec.js
@@ -135,9 +135,9 @@ describe('Button', () => {
135
expect(uut.getLabelColor()).toEqual(ThemeManager.CTADisabledColor);
136
});
137
138
- it('should return dark10 color if this is an icon button (without label)', () => {
+ it('should return undefined color if this is an icon button (without label)', () => {
139
const uut = new Button({iconSource: 12});
140
- expect(uut.getLabelColor()).toEqual(Colors.dark10);
+ expect(uut.getLabelColor()).toEqual(undefined);
141
142
143
0 commit comments