Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jan 9, 2024
1 parent 4c63f76 commit 0782c3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/cases/jsx/jsx.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ describe('Run WCC For ', function() {
it('should handle an assignment expression with implicit reactivity using this.render', () => {
const element = Array.from(buttons).find(button => button.getAttribute('id') === 'evt-assignment');

expect(element.getAttribute('onclick')).to.be.equal('this.parentElement.parentElement.count-=1; this.parentElement.parentElement.setAttribute(\'count\', this.parentElement.parentElement.count);');
expect(element.getAttribute('onclick'))
.to.be.equal('this.parentElement.parentElement.count-=1; this.parentElement.parentElement.setAttribute(\'count\', this.parentElement.parentElement.count);');
});
});

Expand Down

0 comments on commit 0782c3c

Please sign in to comment.