diff --git a/packages/fighting-design/space/__test__/space.spec.ts b/packages/fighting-design/space/__test__/space.spec.ts index 46b1dfd322..e732a0ba63 100644 --- a/packages/fighting-design/space/__test__/space.spec.ts +++ b/packages/fighting-design/space/__test__/space.spec.ts @@ -4,6 +4,13 @@ import { FSpace } from '../index' import { FIGHTING_SIZE } from '../../_tokens' describe('FSpace', () => { + test('should render slot', () => { + const wrapper = mount(FSpace, { + slots: { default: '123' } + }) + expect(wrapper.text()).toContain('123') + }) + test('class', () => { const wrapper = mount(FSpace, { slots: { default: '123' }