Skip to content

Commit

Permalink
agregar escala y corregir componentes
Browse files Browse the repository at this point in the history
  • Loading branch information
damian committed Nov 28, 2023
1 parent e885712 commit de764dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CheckBox/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('CheckBox component', () => {
const {style} = ViewComponent.props.children.props;

expect(style.backgroundColor).toBe('#2979FF');
expect(style.width).toBe(16);
expect(style.width).toBe(33.5);
});

it('when is false, borderColor is #939598', () => {
Expand All @@ -26,7 +26,7 @@ describe('CheckBox component', () => {
const {style} = ViewComponent.props.children.props;

expect(style.borderColor).toBe('#939598');
expect(style.width).toBe(16);
expect(style.width).toBe(33.5);
});
});

Expand Down

0 comments on commit de764dc

Please sign in to comment.