summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index b28fdf49..d0344ab2 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -18,6 +18,10 @@ module.exports = {
parserOptions: {
parser: 'babel-eslint'
},
+ globals: {
+ expect: true,
+ sinon: true
+ },
overrides: [
{
files: [
@@ -25,7 +29,7 @@ module.exports = {
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
- jest: true
+ mocha: true
}
}
]