From 903fb27f99c773ce4217b24a4d1096ca08f194de Mon Sep 17 00:00:00 2001 From: iko Date: Sun, 1 Jan 2023 16:26:36 +0000 Subject: [PATCH] Removed mocha globals check --- src/Test/Spec/Mocha.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Test/Spec/Mocha.js b/src/Test/Spec/Mocha.js index 06f4710..ff34397 100644 --- a/src/Test/Spec/Mocha.js +++ b/src/Test/Spec/Mocha.js @@ -2,10 +2,6 @@ // module Test.Spec.Mocha -if (typeof describe !== 'function' || typeof it !== 'function') { - throw new Error('Mocha globals seem to be unavailable!'); -} - export const itAsync = function (only) { "use strict"; return function (name) {