All files / src/libraries/__tests__/mocks html.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 182x                                  
export default `
  <!-- This is a comment -->
  <p id="paragraph">This is an html <span>example</span> for testing purposes.</p>
 
  <!-- [class] attribute -->
  <div class="hello" style="width: 180px;">
    <img src="http://example.com/img.jpg">
  </div>
 
  <!-- [autoplay] standalone attribute ([key/value] should be [autoPlay/true] -->
  <audio autoplay>
    <source src="example.ogg" type="audio/ogg">
  </audio>
 
  <!-- Encoded phrase that should be decoded -->
  <p>Improve your blog&#8217;s performance &amp; mobile experience.</p>
`;