Skip to content

Commit

Permalink
refactor(lint): fix indent issue
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrossil committed Nov 7, 2023
1 parent 04af289 commit 8342cb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/x-frame/x-frame.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ describe('x-frame', () => {
describe('padding attribute', () => {
it('given padding is 100, size should be 200x200', () => {
document.body.innerHTML = /* html */`
<x-app>
<x-frame id="x-frame" padding="100"></x-frame>
</x-app>`;
<x-app>
<x-frame id="x-frame" padding="100"></x-frame>
</x-app>`;
const element = document.getElementById('x-frame');
if (element) {
const bound = element.getBoundingClientRect();
Expand Down

0 comments on commit 8342cb7

Please sign in to comment.