From 80aca59af7be456dc0080b8db88c6b95ddd5ba7e Mon Sep 17 00:00:00 2001 From: witzig Date: Thu, 15 Jun 2017 21:28:40 +0200 Subject: [PATCH] Disable eslint rule no-await-in-loop for e2e tests --- test/e2e/.eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/.eslintrc b/test/e2e/.eslintrc index a5157382..78fe9cc2 100644 --- a/test/e2e/.eslintrc +++ b/test/e2e/.eslintrc @@ -4,7 +4,8 @@ "strict": 0, "no-console": 0, "comma-dangle": 0, - "arrow-body-style": 0 + "arrow-body-style": 0, + "no-await-in-loop": 0 }, "env": { "mocha": true