From 5c2f3ba95481c2e7d0a2179eb6d9edbafa8b1704 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Sat, 2 Sep 2023 14:01:56 +0400 Subject: [PATCH] Remove sinon from setup --- test/setup.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/setup.js b/test/setup.js index 760e78209..939a5ea36 100644 --- a/test/setup.js +++ b/test/setup.js @@ -1,7 +1,6 @@ import 'regenerator-runtime/runtime'; import 'whatwg-fetch'; import _ from 'underscore'; -import sinon from 'sinon'; const localStorage = { getItem(key) { @@ -16,7 +15,6 @@ const localStorage = { }; global._ = _; -global.sinon = sinon; global.__GJS_VERSION__ = ''; global.grapesjs = require('./../src').default; global.$ = global.grapesjs.$;