// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`components in t-out simple list 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let { prepareList, isBoundary, withDefault, LazyValue, safeOutput, withKey } = helpers; const comp1 = app.createComponent(\`Child\`, true, false, false, []); function value1(ctx, node, key = \\"\\") { return comp1({}, key + \`__1\`, node, this, null); } return function template(ctx, node, key = \\"\\") { ctx = Object.create(ctx); ctx[isBoundary] = 1 ctx = Object.create(ctx); const [k_block1, v_block1, l_block1, c_block1] = prepareList([1,2]);; for (let i1 = 0; i1 < l_block1; i1++) { ctx[\`n\`] = k_block1[i1]; const key1 = ctx['n']; ctx[\`blabla\`] = new LazyValue(value1, ctx, this, node, key1); c_block1[i1] = withKey(safeOutput(ctx['blabla']), key1); } return list(c_block1); } }" `; exports[`components in t-out simple list 2`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`child\`); } }" `;