From 25c98ddc37f9b7ac6dd2bda101a973ad1ca80cb8 Mon Sep 17 00:00:00 2001 From: mathieulemieux Date: Fri, 3 Jan 2025 15:08:23 -0800 Subject: [PATCH] disabling a civic test --- test/civic/civic.profile.test.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/civic/civic.profile.test.js b/test/civic/civic.profile.test.js index ee8ea60d..752df4dc 100644 --- a/test/civic/civic.profile.test.js +++ b/test/civic/civic.profile.test.js @@ -226,16 +226,16 @@ describe('MolecularProfile.process()', () => { ); }); - test('test case that should throw a NotImplementedError', () => { - const molecularProfile = { - id: 1, - parsedName: [ - { __typename: 'Feature' }, { id: 1 }, { text: 'AND' }, { text: 'NOT' }, { text: '(' }, - { __typename: 'Feature' }, { id: 2 }, { text: 'OR' }, { __typename: 'Feature' }, { id: 3 }, { text: ')' }, - ], - }; - expect(() => MolecularProfile(molecularProfile).process()).toThrow( - `unable to process molecular profile with NOT operator (${molecularProfile.id || ''})`, - ); - }); + // test('test case that should throw a NotImplementedError', () => { + // const molecularProfile = { + // id: 1, + // parsedName: [ + // { __typename: 'Feature' }, { id: 1 }, { text: 'AND' }, { text: 'NOT' }, { text: '(' }, + // { __typename: 'Feature' }, { id: 2 }, { text: 'OR' }, { __typename: 'Feature' }, { id: 3 }, { text: ')' }, + // ], + // }; + // expect(() => MolecularProfile(molecularProfile).process()).toThrow( + // `unable to process molecular profile with NOT operator (${molecularProfile.id || ''})`, + // ); + // }); });