From b4519ae018943d9b7ec9c836cc34e6e4b40bfe57 Mon Sep 17 00:00:00 2001 From: "jonathan.casey" Date: Fri, 2 Jun 2023 13:02:29 +0100 Subject: [PATCH] feat(map): fix Signed-off-by: jonathan.casey --- packages/concerto-core/test/model/concept.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/concerto-core/test/model/concept.js b/packages/concerto-core/test/model/concept.js index b2ff3fa68..d65fa83ca 100644 --- a/packages/concerto-core/test/model/concept.js +++ b/packages/concerto-core/test/model/concept.js @@ -128,7 +128,7 @@ describe('Concept', function () { }).should.throw(/Attempting to create an ENUM declaration is not supported./); }); - it.only('should generate an error trying to create an Map from JSON', function () { + it('should generate an error trying to create an Map from JSON', function () { let conceptModel = fs.readFileSync('./test/data/model/concept.cto', 'utf8'); modelManager.addCTOModel(conceptModel, 'concept.cto'); const factory = new Factory(modelManager);