summaryrefslogtreecommitdiff
path: root/spec/javascripts/notes_spec.js.coffee
blob: dd160e821b3d6e54610ac184e87f7d701e6350ec (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 = {}
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)