Honestly i'm going on just for the challenge now'

This commit is contained in:
Vito Albano
2023-12-22 15:30:44 +00:00
committed by VitoAlbano
parent 54581ea546
commit 7dcfa756b0

View File

@@ -702,8 +702,6 @@ describe('ContentMetadataComponent', () => {
}); });
it('should load the group properties on node change', () => { it('should load the group properties on node change', () => {
getGroupedPropertiesSpy;
component.ngOnChanges({ node: new SimpleChange(node, expectedNode, false) }); component.ngOnChanges({ node: new SimpleChange(node, expectedNode, false) });
expect(contentMetadataService.getGroupedProperties).toHaveBeenCalledWith(expectedNode, 'custom-preset'); expect(contentMetadataService.getGroupedProperties).toHaveBeenCalledWith(expectedNode, 'custom-preset');
@@ -726,7 +724,6 @@ describe('ContentMetadataComponent', () => {
} }
]; ];
component.preset = presetConfig; component.preset = presetConfig;
getGroupedPropertiesSpy;
component.ngOnChanges({ node: new SimpleChange(node, expectedNode, false) }); component.ngOnChanges({ node: new SimpleChange(node, expectedNode, false) });