summaryrefslogtreecommitdiff
path: root/spec/javascripts/notes_spec.js.coffee
blob: 3a3c8d63e82f7106b25bc4c3687aa02f30561b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#= require notes
#= require gl_form

window.gon or= {}
window.disableButtonIfEmptyField = -> null

describe 'Notes', ->
  describe 'task lists', ->
    fixture.preload('issue_note.html')

    beforeEach ->
      fixture.load('issue_note.html')
      $('form').on 'submit', (e) -> e.preventDefault()

      @notes = new Notes()

    it 'modifies the Markdown field', ->
      $('input[type=checkbox]').attr('checked', true).trigger('change')
      expect($('.js-task-list-field').val()).toBe('- [x] Task List Item')

    it 'submits the form on tasklist:changed', ->
      submitted = false
      $('form').on 'submit', (e) -> submitted = true; e.preventDefault()

      $('.js-task-list-field').trigger('tasklist:changed')
      expect(submitted).toBe(true)