Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-mocha

Package Overview
Dependencies
Maintainers
2
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-mocha - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

lib/rules/no-skipped-tests.js

16

CHANGELOG.md

@@ -0,1 +1,17 @@

## 2.1.0 (April 11, 2016)
### Bug Fixes
* Support specify alias (#58)
### Dependency Upgrades
* Update ramda to version 0.21.0 🚀 (#56)
* Update ramda to version 0.20.0 🚀 (#53)
### Features
* Add rule no-skipped-tests (#55)
## 2.0.0 (February 13, 2016)

@@ -2,0 +18,0 @@

1

index.js

@@ -6,2 +6,3 @@ 'use strict';

'no-exclusive-tests': require('./lib/rules/no-exclusive-tests'),
'no-skipped-tests': require('./lib/rules/no-skipped-tests'),
'handle-done-callback': require('./lib/rules/handle-done-callback'),

@@ -8,0 +9,0 @@ 'no-synchronous-tests': require('./lib/rules/no-synchronous-tests'),

@@ -11,2 +11,4 @@ 'use strict';

'test.only',
'specify',
'specify.only',
'before',

@@ -13,0 +15,0 @@ 'after',

3

lib/rules/no-exclusive-tests.js

@@ -9,3 +9,4 @@ 'use strict';

'test',
'context'
'context',
'specify'
];

@@ -12,0 +13,0 @@

@@ -10,3 +10,6 @@ 'use strict';

'test.only',
'test.skip'
'test.skip',
'specify',
'specify.only',
'specify.skip'
];

@@ -13,0 +16,0 @@

@@ -11,2 +11,4 @@ 'use strict';

'test.only',
'specify',
'specify.only',
'before',

@@ -13,0 +15,0 @@ 'after',

{
"name": "eslint-plugin-mocha",
"version": "2.0.0",
"version": "2.1.0",
"description": "Eslint rules for mocha.",

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

"dependencies": {
"ramda": "^0.19.1"
"ramda": "^0.21.0"
},

@@ -18,0 +18,0 @@ "devDependencies": {

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