Created
March 14, 2013 11:26
-
-
Save atleastimtrying/5160612 to your computer and use it in GitHub Desktop.
event driven tests
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
describe 'player movement', -> | |
it 'moves up when clicked', -> | |
playerStartPosition = $('.player').offset().top | |
$('button.up').trigger('click') | |
playerEndPosition = $('.player').offset().top | |
expect(playerStartPosition).not.toBe playerEndPosition | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment