From e6774023ce722ff76ad15d9c741affdaf76f40ee Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 15 Feb 2019 13:43:24 +0200 Subject: [PATCH] test(rest) rm autoGlobals --- client/dom/rest.spec.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/dom/rest.spec.js b/client/dom/rest.spec.js index 86eb6a35..186ca650 100644 --- a/client/dom/rest.spec.js +++ b/client/dom/rest.spec.js @@ -1,9 +1,6 @@ 'use strict'; -const autoGlobals = require('auto-globals'); -const tape = autoGlobals(require('supertape')); - -const test = autoGlobals(tape); +const test = require('supertape'); const rest = require('./rest'); test('cloudcmd: client: rest: replaceHash', (t) => { @@ -15,3 +12,4 @@ test('cloudcmd: client: rest: replaceHash', (t) => { t.equal(result, expected, 'should equal'); t.end(); }); +