From 0023ba8221ce4abf111083a600ef2a5ef29c6f55 Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Wed, 20 Jul 2022 21:39:24 +0200 Subject: [PATCH] Updated --- test/src/Validator.test.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/src/Validator.test.ts b/test/src/Validator.test.ts index 03095c86..14dbe040 100644 --- a/test/src/Validator.test.ts +++ b/test/src/Validator.test.ts @@ -29,13 +29,9 @@ describe("Validate", function () { expect(object).to.not.be.null; }); - describe("Checking refs of " + filepath, function () { - if (!object) { - return; - } - + if (object) { explore_refs(object, path.dirname(filepath)); - }); + } }); }); });