Skip to content

Commit

Permalink
fix: integration test ie11 flapper
Browse files Browse the repository at this point in the history
  • Loading branch information
jodarove committed Apr 26, 2019
1 parent 857ab1e commit d42f69d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ describe('Nested conditional render', () => {
.shadowRoot.querySelector('.click-me')
.click();
});
browser.pause(50);
browser.pause(100);
const toggleElement = browser.execute(function() {
return document
.querySelector('integration-nested-render-conditional')
.shadowRoot.querySelectorAll('.toggle');
.shadowRoot.querySelector('.toggle');
});
assert.deepEqual(toggleElement.value.length, 0);
assert.deepEqual(toggleElement.value, null);
});
});

0 comments on commit d42f69d

Please sign in to comment.