Skip to content

Commit

Permalink
OP-326: Behat - deleting content element
Browse files Browse the repository at this point in the history
  • Loading branch information
jkindly committed Jul 10, 2024
1 parent 394cb62 commit 00a9086
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/Behat/Helpers/ContentElementHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ public static function getExampleConfigurationByContentElement(string $contentEl
'Single media' => ['single_media' => 'homepage_header_image'],
'Multiple media' => ['multiple_media' => ['homepage_header_image', 'homepage_pdf']],
'Heading' => ['heading_type' => 'h1', 'heading' => 'Heading content'],
'Products carousel' => ["products_carousel" => [
"products" => [
"Everyday_white_basic_T_Shirt",
"Loose_white_designer_T_Shirt"
'Products carousel' => ['products_carousel' => [
'products' => [
'Everyday_white_basic_T_Shirt',
'Loose_white_designer_T_Shirt',
],
]],
'Products carousel by Taxon' => ['products_carousel_by_taxon' => 'MENU_CATEGORY'],
'Taxons list' => ["taxons_list" => [
"taxons" => [
"MENU_CATEGORY",
"t_shirts"
'Taxons list' => ['taxons_list' => [
'taxons' => [
'MENU_CATEGORY',
't_shirts',
],
]],
default => throw new \InvalidArgumentException(sprintf('Content element with name "%s" does not exist.', $contentElement)),
Expand Down

0 comments on commit 00a9086

Please sign in to comment.