Commit fa7ba54f by Ari Rizzitano Committed by GitHub

Merge pull request #24 from edx/greenkeeper/eslint-4.5.0

chore(package): update eslint to version 4.5.0
parents 232919a0 cb1993f6
......@@ -42,7 +42,7 @@
"coveralls": "^2.13.1",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-edx": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
......
......@@ -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