2019-10-11 15:13:55 +01:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
|
|
|
exports[`compile should contain standard transforms 1`] = `
|
|
|
|
"const _Vue = Vue
|
2020-01-31 11:06:37 -05:00
|
|
|
const { createVNode: _createVNode } = _Vue
|
2019-10-11 15:13:55 +01:00
|
|
|
|
|
|
|
const _hoisted_1 = {}
|
|
|
|
|
|
|
|
return function render() {
|
|
|
|
with (this) {
|
|
|
|
const { createVNode: _createVNode, createBlock: _createBlock, Fragment: _Fragment, openBlock: _openBlock } = _Vue
|
|
|
|
|
|
|
|
return (_openBlock(), _createBlock(_Fragment, null, [
|
|
|
|
_createVNode(\\"div\\", { textContent: text }, null, 8 /* PROPS */, [\\"textContent\\"]),
|
|
|
|
_createVNode(\\"div\\", { innerHTML: html }, null, 8 /* PROPS */, [\\"innerHTML\\"]),
|
|
|
|
_createVNode(\\"div\\", null, \\"test\\"),
|
2019-10-23 10:57:05 -04:00
|
|
|
_createVNode(\\"div\\", { style: _hoisted_1 }, \\"red\\"),
|
2019-11-15 16:47:55 -05:00
|
|
|
_createVNode(\\"div\\", { style: {color: 'green'} }, null, 4 /* STYLE */)
|
2019-12-12 20:46:20 -05:00
|
|
|
], 64 /* STABLE_FRAGMENT */))
|
2019-10-11 15:13:55 +01:00
|
|
|
}
|
|
|
|
}"
|
|
|
|
`;
|