Commit 3e7e7ae0 authored by Jacob Schatz's avatar Jacob Schatz

clarifies tests with methods like `toBeVisible()` etc.

parent fec7c99e
...@@ -34,7 +34,7 @@ describe 'reopen/close issue', -> ...@@ -34,7 +34,7 @@ describe 'reopen/close issue', ->
# setup # setup
$btnClose = $('a.btn-close') $btnClose = $('a.btn-close')
$btnReopen = $('a.btn-reopen') $btnReopen = $('a.btn-reopen')
expect($btnReopen.hasClass('hidden')).toBe(true) expect($btnReopen.toBeHidden())
expect($btnClose.text()).toBe('Close') expect($btnClose.text()).toBe('Close')
expect(typeof $btnClose.prop('disabled')).toBe('undefined') expect(typeof $btnClose.prop('disabled')).toBe('undefined')
...@@ -42,11 +42,10 @@ describe 'reopen/close issue', -> ...@@ -42,11 +42,10 @@ describe 'reopen/close issue', ->
$btnClose.trigger('click') $btnClose.trigger('click')
# verify # verify
expect($btnClose.hasClass('hidden')).toBe(true) expect($btnClose.toBeHidden())
expect($btnReopen.hasClass('hidden')).toBe(false) expect($btnReopen.toBeVisible())
expect($btnClose.prop('disabled')).toBe(false) expect($('div.issue-box-open').toBeVisible())
expect($('div.issue-box-open').hasClass('hidden')).toBe(true) expect($('div.issue-box-closed').toBeHidden())
expect($('div.issue-box-closed').hasClass('hidden')).toBe(false)
# teardown # teardown
it 'reopens an issue', -> it 'reopens an issue', ->
...@@ -58,17 +57,15 @@ describe 'reopen/close issue', -> ...@@ -58,17 +57,15 @@ describe 'reopen/close issue', ->
# setup # setup
$btnClose = $('a.btn-close') $btnClose = $('a.btn-close')
$btnReopen = $('a.btn-reopen') $btnReopen = $('a.btn-reopen')
expect(typeof $btnReopen.prop('disabled')).toBe('undefined')
expect($btnReopen.text()).toBe('Reopen') expect($btnReopen.text()).toBe('Reopen')
# excerize # excerize
$btnReopen.trigger('click') $btnReopen.trigger('click')
# verify # verify
expect($btnReopen.hasClass('hidden')).toBe(true) expect($btnReopen.toBeHidden())
expect($btnClose.hasClass('hidden')).toBe(false) expect($btnClose.toBeVisible())
expect($btnReopen.prop('disabled')).toBe(false) expect($('div.issue-box-open').toBeVisible())
expect($('div.issue-box-open').hasClass('hidden')).toBe(false) expect($('div.issue-box-closed').toBeHidden())
expect($('div.issue-box-closed').hasClass('hidden')).toBe(true)
# teardown # teardown
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment