cypress-plugin-snapshots icon indicating copy to clipboard operation
cypress-plugin-snapshots copied to clipboard

(feat) Ignore order of HTML attributes

Open ngocdaothanh opened this issue 5 years ago • 0 comments

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.

ngocdaothanh avatar Dec 05 '19 07:12 ngocdaothanh