diff --git a/test/specs/style_manager/model/Properties.js b/test/specs/style_manager/model/Properties.js index f09b632da..2985628de 100644 --- a/test/specs/style_manager/model/Properties.js +++ b/test/specs/style_manager/model/Properties.js @@ -84,7 +84,12 @@ describe('StyleManager properties logic', () => { expect(style[propInTest]).toBe('55%'); expect(compTypeProp.hasValue()).toBe(true); expect(compTypePropInn.hasValue()).toBe(true); - otherProps.forEach(prop => expect(style[prop]).toBe('')); + otherProps.forEach(prop => { + expect(style[prop]).toBe(''); + if (prop !== propTest) { + expect(compTypeProp.getProperty(prop).hasValue()).toBe(false); + } + }); }); }); });