Skip to content

Commit

Permalink
fix: remove tips tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Oct 2, 2024
1 parent f2fba1e commit dc8a2cd
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,4 @@ describe('SearchBarInput.vue', function () {
await wrapper.setProps({ disableSubmit: true })
expect(wrapper.find('.search-bar-input__submit').element.disabled).toBe(true)
})

it('should show tips when there is a query', () => {
wrapper = shallowMountFactory()
expect(wrapper.find('.search-bar-input__tips-addon--active').exists()).toBeFalsy()
wrapper = shallowMountFactory({ modelValue: 'query' })
expect(wrapper.find('.search-bar-input__tips-addon--active').exists()).toBeTruthy()
})
})

0 comments on commit dc8a2cd

Please sign in to comment.