Socket
Socket
Sign inDemoInstall

mocha-eslint

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocha-eslint - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

.eslintrc

6

CHANGELOG.md

@@ -5,2 +5,8 @@ # mocha-eslint Changelog

### v0.1.5
* [ENHANCEMENT] Increment ESLint to v0.19.0
### v0.1.4
* [ENHANCEMENT] Increment ESLint to v0.18.0
### v0.1.3

@@ -7,0 +13,0 @@ * [BUGFIX] Fix glob dependency

4

package.json
{
"name": "mocha-eslint",
"version": "0.1.4",
"version": "0.1.5",
"description": "run ESLint as mocha tests",

@@ -18,3 +18,3 @@ "main": "index.js",

"chalk": "^1.0",
"eslint": "^0.18.0",
"eslint": "^0.19.0",
"glob": "5.0.3"

@@ -21,0 +21,0 @@ },

@@ -7,3 +7,3 @@ # mocha-eslint

Run [ESLint](http://eslint.org/) in your [Mocha](http://mochajs.org/) tests.
A simple way to run [ESLint](http://eslint.org/) in your [Mocha](http://mochajs.org/) tests without a task runner like Grunt or Gulp.

@@ -10,0 +10,0 @@ Inspired by [mocha-jshint](https://github.com/Muscula/mocha-jshint) from

@@ -8,3 +8,3 @@ /*eslint-env node, mocha */

describe('Acceptance: mocha-eslint', function() {
describe('Acceptance: mocha-eslint', function () {

@@ -15,6 +15,6 @@ it('should pass test for lintSucceed.js', function (done) {

throw new Error('Did not get a passing test');
};
done()
}
done();
});
})
});

@@ -25,6 +25,6 @@ it('should fail test for lintFail.js', function (done) {

throw new Error('Did not get a failing test');
};
done()
}
done();
});
})
});

@@ -36,4 +36,4 @@ it('should test multiple paths correctly', function (done) {

throw new Error('Did not get a single pass and single failure');
};
done()
}
done();
});

@@ -40,0 +40,0 @@ });

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc