Fix OOP <webview> resize and autosize.
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / iron-test-helpers / README.md
blob6c27bf90f92a351b0ef79291d14b53838c394cf6
1 # iron-test-helpers
3 Utility classes to make testing easier.
5 ## Mock Interactions
7 This is a set of methods to simulate mouse or keyboard interaction with an element. Include `mock-interactions.js` and then use them like so:
9 ```javascript
10 test('can be triggered with space', function(done) {
11   button.addEventListener('keydown', function() {
12     done();
13   });
14   MockInteractions.pressSpace(button);
15 });
17 test('can be clicked', function(done) {
18   button.addEventListener('click', function() {
19     done();
20   });
21   MockInteractions.tap(button);
22 });
23 ```