Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Last active August 29, 2015 13:55
Show Gist options
  • Save qmaruf/8694621 to your computer and use it in GitHub Desktop.
Save qmaruf/8694621 to your computer and use it in GitHub Desktop.
Jasmine test failing
describe("display alert for unsaved publisher content", function(){
it('should display confirm dialog if text exists in status message', function(){
$('#status_message_fake_text').val('Hello world');
spyOn(window, 'confirm');
$(window).trigger('confirm')
expect(window.confirm).toHaveBeenCalled();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment