From 652a331e204031321ae309e519e4813e5f49ea02 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Thu, 19 Apr 2018 10:21:29 -0700 Subject: [PATCH] remove global assert Signed-off-by: Christopher Hiller --- .eslintrc.yml | 1 - test/setup.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index ed9026ab9d..04817a3b40 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -34,7 +34,6 @@ overrides: mocha: yes globals: expect: no - assert: no - files: - doc/**/*.js env: diff --git a/test/setup.js b/test/setup.js index cac2351127..510bf907a1 100644 --- a/test/setup.js +++ b/test/setup.js @@ -4,5 +4,3 @@ var unexpected = require('unexpected'); global.expect = require('./assertions').mixinMochaAssertions( unexpected.clone() ); - -global.assert = require('assert');