eslint-plugin-mocha
Advanced tools
Comparing version 6.2.1 to 6.2.2
@@ -0,1 +1,11 @@ | ||
## 6.2.2 (November 22, 2019) | ||
### Bug Fixes | ||
* Support TDD interface in no-setup-in-describe ([#220](https://github.com/lo1tuma/eslint-plugin-mocha/pull/220)) | ||
### Build-Related | ||
* 🚀 Use GitHub Actions instead of Travis ([#221](https://github.com/lo1tuma/eslint-plugin-mocha/pull/221)) | ||
## 6.2.1 (October 28, 2019) | ||
@@ -2,0 +12,0 @@ |
@@ -18,3 +18,6 @@ 'use strict'; | ||
]; | ||
const hooks = [ 'before', 'after', 'beforeEach', 'afterEach', 'beforeAll', 'afterAll' ]; | ||
const hooks = [ | ||
'before', 'after', 'beforeEach', 'afterEach', 'beforeAll', 'afterAll', | ||
'setup', 'teardown', 'suiteSetup', 'suiteTeardown' | ||
]; | ||
const suiteConfig = [ 'timeout', 'slow', 'retries' ]; | ||
@@ -21,0 +24,0 @@ const testCaseNames = [ |
{ | ||
"name": "eslint-plugin-mocha", | ||
"version": "6.2.1", | ||
"version": "6.2.2", | ||
"description": "Eslint rules for mocha.", | ||
@@ -5,0 +5,0 @@ "engines": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69291
1457