Commit 8404b973 by Ari Rizzitano

lintfixes

parent 4953c937
......@@ -10,7 +10,7 @@ describe('<CheckBox />', () => {
name="checkbox"
label="check me out!"
/>,
);
);
expect(wrapper.find('[name="checkbox"]').exists()).toEqual(true);
expect(wrapper.find('[type="checkbox"]').exists()).toEqual(true);
......@@ -24,7 +24,7 @@ describe('<CheckBox />', () => {
name="checkbox"
label="check me out!"
/>,
);
);
expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true);
......
......@@ -120,7 +120,7 @@ class Dropdown extends React.Component {
<div
className={classNames([
styles.dropdown,
{ [styles.show]: this.state.open },
{ [styles.show]: this.state.open },
])}
ref={(container) => { this.container = container; }}
>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment