Skip to content

Commit eb3a8f2

Browse files
committed
Fix
1 parent 498d96f commit eb3a8f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datajunction-ui/src/app/components/__tests__/NodeComponents.test.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ describe('NodeComponents', () => {
127127
it('should apply large size styles', () => {
128128
render(<NodeLink node={mockNode} size="large" />);
129129
const link = screen.getByText('My Metric');
130-
expect(link).toHaveStyle({ fontSize: '13px', fontWeight: '500' });
130+
expect(link).toHaveStyle({ fontSize: '14px', fontWeight: '500' });
131131
});
132132

133133
it('should use medium as default when invalid size provided', () => {
@@ -253,7 +253,7 @@ describe('NodeComponents', () => {
253253
const { container } = render(<NodeChip node={mockNode} />);
254254
const link = container.querySelector('a');
255255
expect(link).toHaveStyle({
256-
fontSize: '10px',
256+
fontSize: '12px',
257257
padding: '2px 6px',
258258
whiteSpace: 'nowrap',
259259
});

0 commit comments

Comments
 (0)