Skip to content

Commit

Permalink
New version of eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mrijk committed Jun 24, 2018
1 parent 1e6f234 commit 036e7e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cat.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const generate = require('./util/generate');
function _conform(specs, values) {

if (_.isEmpty(specs)) {
return _.isEmpty(values) ? {} : invalidString
return _.isEmpty(values) ? {} : invalidString;
}

for (let [head, rest] of generate(values)) {
Expand Down
2 changes: 1 addition & 1 deletion test/mapOf.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('Test the mapOf function', () => {
expect(idemPotent('::scores', {'Sally': 1000, 'Joe': 500})).to.be.true;
});

xit('should implement a generator', () => {
it('should implement a generator', () => {
expect(s.exercise('::scores2to3')).to.have.length(10)
.to.satisfy(sample => _.every(sample, v => _.isArray(v) && v.length === 2));
});
Expand Down

0 comments on commit 036e7e0

Please sign in to comment.