diff --git a/n-link-core/components/smoke.spec.ts b/n-link-core/components/smoke.spec.ts deleted file mode 100644 index a584ce2..0000000 --- a/n-link-core/components/smoke.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest'; -import { mount } from '@vue/test-utils'; -import { defineComponent, h } from 'vue'; - -describe('vitest setup', () => { - it('mounts a component', () => { - const C = defineComponent({ render: () => h('div', 'hello') }); - const wrapper = mount(C); - expect(wrapper.text()).toBe('hello'); - }); -});