Use mocha environment and expect global to fix linting in tests

This commit is contained in:
Alasdair Smith 2018-02-27 11:19:40 +00:00
parent 4c2790a71b
commit 4524b3c9f6

View file

@ -1,3 +1,9 @@
{
"extends": ["standard"]
"extends": ["standard"],
"env": {
"mocha": true
},
"globals": {
"expect": true
}
}