From 9a76d4bcf8883c2bdd6a1fae7a46a3a58f3aa664 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Wed, 25 Apr 2018 13:28:28 -0400 Subject: [PATCH] Whitelist `assert` global for tests --- test/.eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/.eslintrc.js b/test/.eslintrc.js index 30f27856c86..375e170fbd2 100644 --- a/test/.eslintrc.js +++ b/test/.eslintrc.js @@ -6,6 +6,10 @@ module.exports = { browser: true, }, + globals: { + assert: true + }, + parserOptions: { sourceType: 'script', },