我的茉莉花套件和我使用jQuery的新事件注册方法.on()时遇到了问题。
这是我的fixuture的简化版本:
<div id='rent_payment_schedule_container'>
<select class="select optional" id="frequency_select" name="payment_schedule[frequency]">
<option value="0">Monthly</option>
<option value="1">Weekly</option>
<option value="2">Bi-Weekly</option>
</select>
<div class="control-group select optional start-day-select" id="monthly_select"></div>
<div class="control-group select optional start-day-select" id="weekly_select" style="display: none;"></div>
</div>
这是coffeescript(在其使用的实际页面上工作得很好):
$ ->
$('#rent_payment_schedule_container').on 'change', '#frequency_select', (event) ->
$('.start-day-select').hide()
switch $(event.target).val()
when '0'
$('#monthly_select').show()
when '1'
$('#weekly_select').show()
when '2'
$('#weekly_select').show()
这是规范:
describe 'The UI components on the payment schedule creation page', ->
beforeEach ->
loadFixtures 'payment_schedule'
describe 'The toggling of the monthly and weekly day select options', ->
it 'shows the weekly select div and hides the monthly select div when the weekly option is selected from the #frequency_select select box', ->
$('#frequency_select option[value=1]').attr('selected', 'selected')
$('#frequency_select').change()
expect($("#weekly_select")).toBeVisible()
it 'shows the weekly select div and hides the monthly select div when the bi-weekly option is selected from the #frequency_select select box', ->
$('#frequency_select option[value=2]').attr('selected', 'selected')
$('#frequency_select').change()
expect($("#weekly_select")).toBeVisible()
it 'shows the monthly select div and hides the weekly select div when the monthly option is selected from the #frequency_select select box', ->
$('#frequency_select option[value=1]').attr('selected', 'selected')
$('#frequency_select').change()
$('#frequency_select option[value=0]').attr('selected', 'selected')
$('#frequency_select').change()
expect($("#monthly_select")).toBeVisible()
每次都会悲惨地失败。
但是,如果不使用$('#rent_payment_schedule_container')
作为.on()
的接收者,我使用$(document)
,整个过程非常有用。
$ ->
$(document).on 'change', '#frequency_select', (event) ->
$('.start-day-select').hide()
switch $(event.target).val()
when '0'
$('#monthly_select').show()
when '1'
$('#weekly_select').show()
when '2'
$('#weekly_select').show()
所以,我最好的猜测是,这与茉莉花装载夹具然后运行测试的顺序或速度有关,但我不能确定。任何人都可以指出我正确的方向,为什么会发生这种情况以及如何解决它?
答案 0 :(得分:3)
我的猜测是你将你的脚本与spec跑步者一起加载。当您的DOM准备就绪时,您的脚本将执行。虽然夹具已经装好了。因此,$('#rent_payment_schedule_container')
将不会选择任何元素,您可以自行验证。
在任何情况下,您都可以通过将脚本包装在可以在测试中调用的函数来解决这个问题。