import { describe, expect, test } from 'vitest' import { transform } from '../../src/utils/transformers' describe('transformSFC', () => { test('basic', async () => { const result = await transform({ filename: 'app.vue', raw: ` `, config: {}, }) expect(result).toMatchSnapshot() }) })