Created
February 2, 2018 00:40
-
-
Save ezy/f2cabb0ac1d6774d3300e00c2b915e79 to your computer and use it in GitHub Desktop.
Ember testing cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Visit URLS | |
| andThen(() => { | |
| visit('/url'); | |
| }); | |
| // Fill in inputs | |
| fillIn('input#id', 'string'); | |
| // Click things | |
| click('button#submit-button'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment