+
Custom layout
+
+ {cards
+ .filter(card => card.area === 'info')
+ .map((card, index) => (
+ {card.element}
+ ))}
+
+
+ {cards
+ .filter(card => card.area !== 'info')
+ .map((card, index) => (
+ {card.element}
+ ))}
+
+
+ ),
+ },
+ });
+
+ it('Should use the default layout', async () => {
+ const tester = createExtensionTester(
+ Object.assign({ namespace: 'catalog' }, catalogOverviewEntityContent),
+ );
+
+ await renderInTestApp(
+