<!-- y para finalizar un comentario debes usar --> . Aquí deberás finalizar el comentario antes de que comience tu elemento h2 . h1 p , pero no h2 . h1 para que no se vea en tu página.
    testString: 'assert(($("h1").length === 0), "Comment out your h1 element so that it is not visible on your page.");'
  - text: Deja tu elemento h2 sin comentar, para que sea visible en su página.
    testString: 'assert(($("h2").length > 0), "Leave your h2 element uncommented so that it is visible on your page.");'
  - text: Comenta tu elemento p para que no se vea en tu página.
    testString: 'assert(($("p").length === 0), "Comment out your p element so that it is not visible on your page.");'
  - text: Asegúrate de cerrar cada uno de tus comentarios con --> .
    testString: 'assert(code.match(/[^fc]-->/g).length > 1, "Be sure to close each of your comments with -->.");'
  - text: No cambies el orden de h1 h2 o p en el código.
    testString: 'assert((code.match(/<([a-z0-9]){1,2}>/g)[0]==="") , "Do not change the order of the h1 h2 or p in the code.");'
```