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 e3adb9a commit 35ee9f9Copy full SHA for 35ee9f9
package/src/components/MessageMenu/__tests__/ReactionButton.test.tsx
@@ -34,9 +34,7 @@ describe('ReactionButton', () => {
34
);
35
36
// Check if the unselected pathFill color is rendered by the mock Icon
37
- expect(
38
- getByText(defaultTheme.messageMenu.reactionButton.unfilledColor.toString()),
39
- ).toBeTruthy();
+ expect(getByText(defaultTheme.colors.grey.toString())).toBeTruthy();
40
});
41
42
it('should call onPress function with the correct reaction type when pressed', () => {
@@ -72,6 +70,6 @@ describe('ReactionButton', () => {
72
70
</ThemeProvider>,
73
71
74
75
- expect(getByText(defaultTheme.messageMenu.reactionButton.filledColor.toString())).toBeTruthy();
+ expect(getByText(defaultTheme.colors.accent_blue.toString())).toBeTruthy();
76
77
0 commit comments