import { parse, transform, PlainElementNode, CompilerOptions } from '@vue/compiler-core' import { transformVText } from '../../src/transforms/vText' import { transformElement } from '../../../compiler-core/src/transforms/transformElement' import { createObjectMatcher, genFlagText } from '../../../compiler-core/__tests__/testUtils' import { PatchFlags } from '@vue/shared' import { DOMErrorCodes } from '../../src/errors' function transformWithVText(template: string, options: CompilerOptions = {}) { const ast = parse(template) transform(ast, { nodeTransforms: [transformElement], directiveTransforms: { text: transformVText }, ...options }) return ast } describe('compiler: v-text transform', () => { it('should convert v-text to textContent', () => { const ast = transformWithVText(`
`) expect((ast.children[0] as PlainElementNode).codegenNode).toMatchObject({ arguments: [ `"div"`, createObjectMatcher({ textContent: `[test]` }), `null`, genFlagText(PatchFlags.PROPS), `["textContent"]` ] }) }) it('should raise error and ignore children when v-text is present', () => { const onError = jest.fn() const ast = transformWithVText(`