Skip to content

Commit 5b1f2ef

Browse files
authored
Merge pull request #4486 from magento-obsessive-owls/MC-15981
[Owls] Page Builder Render Update & Skip MFTF Tests
2 parents 17183cf + ce4152a commit 5b1f2ef

9 files changed

+14
-1
lines changed

app/code/Magento/Catalog/Test/Mftf/Test/AdminCloneProductWithDuplicateUrlTest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<test name="AdminCloneProductWithDuplicateUrlTest">
1212
<annotations>
1313
<features value="Catalog"/>
14+
<stories value="Product"/>
1415
<title value="Cloning a product with duplicate URL key"/>
1516
<description value="Check product cloning with duplicate URL key"/>
1617
<severity value="AVERAGE"/>

app/code/Magento/Catalog/Test/Mftf/Test/AdminRestrictedUserAddCategoryFromProductPageTest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<test name="AdminRestrictedUserAddCategoryFromProductPageTest">
1212
<annotations>
1313
<features value="Catalog"/>
14+
<stories value="Category"/>
1415
<title value="Adding new category from product page by restricted user"/>
1516
<description value="Adding new category from product page by restricted user"/>
1617
<severity value="MAJOR"/>

app/code/Magento/Catalog/Test/Mftf/Test/CheckCurrentCategoryIsHighlightedAndProductsDisplayed.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<test name="CheckCurrentCategoryIsHighlightedAndProductsDisplayed">
1212
<annotations>
1313
<features value="Catalog"/>
14+
<stories value="Category"/>
1415
<title value="Сheck that current category is highlighted and all products displayed for it"/>
1516
<description value="Сheck that current category is highlighted and all products displayed for it"/>
1617
<severity value="MAJOR"/>

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/AdminCheckConfigurableProductAttributeValueUniquenessTest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<test name="AdminCheckConfigurableProductAttributeValueUniquenessTest">
1212
<annotations>
1313
<features value="ConfigurableProduct"/>
14+
<stories value="Configurable Product"/>
1415
<title value="Attribute value validation (check for uniqueness) in configurable products"/>
1516
<description value="Attribute value validation (check for uniqueness) in configurable products"/>
1617
<severity value="MAJOR"/>

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/NoOptionAvailableToConfigureDisabledProductTest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
1111
<test name="NoOptionAvailableToConfigureDisabledProductTest">
1212
<annotations>
13+
<stories value="Disabled Product"/>
1314
<title value="Disabled variation of configurable product can't be added to shopping cart via admin"/>
1415
<description value="Disabled variation of configurable product can't be added to shopping cart via admin"/>
1516
<severity value="AVERAGE"/>

app/code/Magento/ConfigurableProduct/Test/Mftf/Test/StorefrontVisibilityOfDuplicateProductTest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
1010
<test name="StorefrontVisibilityOfDuplicateProductTest">
1111
<annotations>
12+
<stories value="Duplicate Product"/>
1213
<features value="ConfigurableProduct"/>
1314
<title value="Visibility of duplicate product on the Storefront"/>
1415
<description value="Check visibility of duplicate product on the Storefront"/>

app/code/Magento/Sales/Test/Mftf/Test/AdminMassOrdersCancelCompleteAndClosedTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<testCaseId value="MC-16183"/>
1818
<group value="sales"/>
1919
<group value="mtf_migrated"/>
20+
<skip>
21+
<issueId value="MC-18275"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<actionGroup ref="LoginAsAdmin" stepKey="LoginAsAdmin"/>

app/code/Magento/Sales/Test/Mftf/Test/AdminMassOrdersCancelProcessingAndClosedTest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<testCaseId value="MC-16184"/>
1818
<group value="sales"/>
1919
<group value="mtf_migrated"/>
20+
<skip>
21+
<issueId value="MC-18275"/>
22+
</skip>
2023
</annotations>
2124
<before>
2225
<actionGroup ref="LoginAsAdmin" stepKey="LoginAsAdmin"/>

app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define([
1111
'use strict';
1212

1313
var root = 'appData',
14-
localStorage = window.localStorage,
14+
localStorage,
1515
hasSupport,
1616
storage;
1717

@@ -22,6 +22,7 @@ define([
2222
var key = '_storageSupported';
2323

2424
try {
25+
localStorage = window.localStorage;
2526
localStorage.setItem(key, 'true');
2627

2728
if (localStorage.getItem(key) === 'true') {

0 commit comments

Comments
 (0)