Skip to content

Commit ee210b5

Browse files
committed
Fix typos
1 parent 97804f4 commit ee210b5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/unit/specs/components/AttributionDetailsStep.spec.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@ describe('AttributionDetailsStep Component Rendering', () => {
3030

3131
it('Component not mounted if status is previous', () =>{
3232
wrapper.setProps({status : 'previous'})
33-
expect(wrapper.find('.step-action').exists()).toBeFalsy
33+
console.log(wrapper.html())
34+
console.log(wrapper.find('.step-content'))
35+
expect(wrapper.find('.step-actions').exists()).toBeFalsy()
3436
})
3537

3638
it('Component not mounted if status is inactive', () =>{
3739
wrapper.setProps({status : 'inactive'})
38-
expect(wrapper.find('.step-action').exists()).toBeFalsy
40+
expect(wrapper.find('.step-actions').exists()).toBeFalsy()
3941
})
40-
42+
4143
it('Component mounted if status is current', () =>{
4244
wrapper.setProps({status : 'current'})
4345
expect(wrapper.element).toMatchSnapshot()

0 commit comments

Comments
 (0)