Skip to content

Commit

Permalink
thymikee#1815 fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jepetko committed Nov 2, 2022
1 parent 7ab05b2 commit 47da3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serializers/ng-snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const print = (fixture: unknown, print: Printer, indent: Indent, opts: PluginOpt
.map((node: VEDebugNode) => Array.from(node.renderElement.childNodes).map(print).join(''))
.join(opts.edgeSpacing);
}
const attributes = Object.keys(componentInstance).filter(key => key !== '__ngContext__');
const attributes = Object.keys(componentInstance).filter((key) => key !== '__ngContext__');
if (attributes.length) {
componentAttrs += attributes
.sort()
Expand Down

0 comments on commit 47da3da

Please sign in to comment.