mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-26 00:58:00 -05:00
12 lines
No EOL
474 B
CoffeeScript
12 lines
No EOL
474 B
CoffeeScript
AuthModalView = require 'views/modal/auth_modal'
|
|
RecoverModalView = require 'views/modal/recover_modal'
|
|
|
|
describe 'AuthModalView', ->
|
|
it 'opens the recover modal when you click the recover link', ->
|
|
m = new AuthModalView()
|
|
m.render()
|
|
spyOn(m, 'openModalView')
|
|
m.$el.find('#link-to-recover').click()
|
|
expect(m.openModalView.calls.count()).toEqual(1)
|
|
args = m.openModalView.calls.argsFor(0)
|
|
expect(args[0] instanceof RecoverModalView).toBeTruthy() |