import { tags } from '../src/compiler/options' import { assert } from './testUtils' describe('mp-alipay: transform component', () => { test(`built-in component`, () => { const code = tags.map((tag) => `<${tag}/>`).join('') assert( code, code, `(_ctx, _cache) => { return {} }` ) }) })