diff --git a/packages/components/direction/src/direction.test.ts b/packages/components/direction/src/direction.test.ts new file mode 100644 index 000000000..8f949f7ec --- /dev/null +++ b/packages/components/direction/src/direction.test.ts @@ -0,0 +1,63 @@ +import { describe, expect, it } from 'vitest' +import { mount } from '@vue/test-utils' +import { type Component } from 'vue' +import { DirectionProvider, useDirection } from './Direction' + +const DirectionContextSymbol = Symbol('DirectionContext') + +describe('direction', () => { + function propsTest(dir: any) { + it(`props ${dir}`, () => { + const wrapper = mount(DirectionProvider, { + props: { + dir, + }, + }) + expect(wrapper.props().dir).toBe(dir) + }) + } + + propsTest('ltr') + propsTest('rtl') + + it('slot', () => { + const wrapper = mount(DirectionProvider, { + slots: { + default: 'test', + }, + }) + expect(wrapper.html()).toContain('test') + }) + it('provide, inject and slot', () => { + const ChildComponent = { + setup() { + const dir = useDirection() + return { + dir, + } + }, + template: '