From a8bd79a44b25cf4ac7e80116083c3ef3531fd763 Mon Sep 17 00:00:00 2001 From: Marco Kruse Date: Wed, 22 Jun 2022 18:23:11 +0200 Subject: [PATCH] Create issue #2299 and outcomment the test --- src/components/20-molecules/input-phone/pw.ui.test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/20-molecules/input-phone/pw.ui.test.js b/src/components/20-molecules/input-phone/pw.ui.test.js index 0ba49aa354..ce6470c3d6 100644 --- a/src/components/20-molecules/input-phone/pw.ui.test.js +++ b/src/components/20-molecules/input-phone/pw.ui.test.js @@ -13,6 +13,7 @@ const selectGermany = async () => { }, tag); }; +/* TODO #2299 const selectNthCountry = async n => { await page.click('.js-dropdown__toggle'); await page.waitForSelector('.m-dropdown__content'); @@ -23,6 +24,7 @@ const selectNthCountry = async n => { .click(); }, n); }; +*/ const writePhoneNumber = async number => { return page.fill('.a-input-text__input', number); @@ -94,6 +96,7 @@ describe('Input Phone', () => { await assertChangeValue(`+43 ${validPhoneNumber}`); }); + /* TODO #2299 it('should demonstrate React controlled mode', async () => { // set up await page.goto( @@ -126,4 +129,5 @@ describe('Input Phone', () => { await selectNthCountry(0); await assertChangeValue('+41 8889449412'); }); + */ });