ESLint fixes

This commit is contained in:
Kyle Shockey
2017-07-28 19:47:46 -07:00
parent f7018bc78f
commit b373182afe
12 changed files with 58 additions and 20 deletions

View File

@@ -1,2 +1,5 @@
env:
mocha: true
rules:
"react/prop-types": 1 # bah humbug
"no-unused-vars": 1 # unused vars in tests can be useful for indicating a full signature

View File

@@ -326,7 +326,7 @@ describe("bound system", function(){
})
describe('wrapSelectors', () => {
describe("wrapSelectors", () => {
it("should wrap a selector and provide a reference to the original", function(){
// Given
@@ -427,7 +427,7 @@ describe("bound system", function(){
wrapSelectors: {
wow: (ori, system) => (dogeState) => {
// Then
expect(dogeState.toJS().abc).toEqual('123')
expect(dogeState.toJS().abc).toEqual("123")
done()
return ori() + " wrapper"
}