Skip to content
Snippets Groups Projects
Commit 71012e8e authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Make list test sensitive to "clicking clears the field" bug

parent fa751133
No related branches found
No related tags found
No related merge requests found
...@@ -114,6 +114,7 @@ describe('Working with the blocks', () => { ...@@ -114,6 +114,7 @@ describe('Working with the blocks', () => {
await clickText('+', scope.monitors); await clickText('+', scope.monitors);
el = await findByXpath(`//body//${scope.monitors}//input`); el = await findByXpath(`//body//${scope.monitors}//input`);
await el.sendKeys('thing2'); await el.sendKeys('thing2');
await el.click(); // Regression for "clicking active input erases value" bug.
await clickText('list1', scope.monitors); // Blur the input to submit await clickText('list1', scope.monitors); // Blur the input to submit
// Check that the list value has been propagated. // Check that the list value has been propagated.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment