// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`white space handling consecutives whitespaces are condensed into a single space 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
abc
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling nothing is done in pre tags 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
   
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling nothing is done in pre tags 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
          some text
        
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling nothing is done in pre tags 3`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
          
        
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling pre inside a div with a new line 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
SomeText
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling white space only text nodes are condensed into a single space 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`white space handling whitespace only text nodes with newlines are removed 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
abc
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `;