meinaart / cypress-plugin-snapshots

Plugin for snapshot tests in Cypress.io
MIT License
497 stars 117 forks source link

(feat) Ignore order of HTML attributes #81

Open ngocdaothanh opened 4 years ago

ngocdaothanh commented 4 years ago

I'm using HTML snapshot, like this:

<object
      aria-hidden="true"
      type="text/html"
      tabindex="-1"
></object>

If I change the order of the attributes, like this:

<object
      type="text/html"
      aria-hidden="true"
      tabindex="-1"
></object>

Please ignore the order by default.