Skip to content

Commit

Permalink
Create issue #2299 and outcomment the test
Browse files Browse the repository at this point in the history
  • Loading branch information
MKaHead committed Jun 22, 2022
1 parent ee014e5 commit a8bd79a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/20-molecules/input-phone/pw.ui.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -23,6 +24,7 @@ const selectNthCountry = async n => {
.click();
}, n);
};
*/

const writePhoneNumber = async number => {
return page.fill('.a-input-text__input', number);
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -126,4 +129,5 @@ describe('Input Phone', () => {
await selectNthCountry(0);
await assertChangeValue('+41 8889449412');
});
*/
});

0 comments on commit a8bd79a

Please sign in to comment.