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)); - }); + } }); }); });