From 4524b3c9f6042a89e0f5e300623f83c663a7534b Mon Sep 17 00:00:00 2001 From: Alasdair Smith Date: Tue, 27 Feb 2018 11:19:40 +0000 Subject: [PATCH] Use mocha environment and expect global to fix linting in tests --- services/web/.eslintrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/services/web/.eslintrc b/services/web/.eslintrc index f119f23279..38d2ce50bb 100644 --- a/services/web/.eslintrc +++ b/services/web/.eslintrc @@ -1,3 +1,9 @@ { - "extends": ["standard"] + "extends": ["standard"], + "env": { + "mocha": true + }, + "globals": { + "expect": true + } } \ No newline at end of file