test: drop vitest smoke test

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Your Name 2026-07-23 06:28:18 -04:00
parent 8578541f1e
commit c678cd9a55

View file

@ -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');
});
});