-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { mount } from '@vue/test-utils' | ||
import { describe, expect, it } from 'vitest' | ||
|
||
import { Icon } from '@iconify/vue' | ||
import IconEye from './IconEye.vue' | ||
|
||
const mountElement = (props?: { isOpen?: boolean }) => { | ||
const defaultProps = { | ||
isOpen: true | ||
} | ||
|
||
return mount(IconEye, { | ||
props: { | ||
...defaultProps, | ||
...props | ||
} | ||
}) | ||
} | ||
describe('IconEye.vue', () => { | ||
it('render eye-off icon when isOpen', () => { | ||
const wrapper = mountElement({ | ||
isOpen: true | ||
}) | ||
|
||
const icon = wrapper.findComponent(Icon) | ||
expect(icon.vm.$attrs.icon).toBe('iconamoon:eye-off') | ||
}) | ||
|
||
it('render eye-open icon when is not open', () => { | ||
const wrapper = mountElement({ | ||
isOpen: false | ||
}) | ||
|
||
const icon = wrapper.findComponent(Icon) | ||
expect(icon.vm.$attrs.icon).toBe('iconamoon:eye') | ||
}) | ||
|
||
it('emits the clickEye event when clicked', async () => { | ||
const wrapper = mountElement() | ||
await wrapper.trigger('click') | ||
expect(wrapper.emitted()).toHaveProperty('clickEye') | ||
}) | ||
}) |