Skip to content

Commit fadf565

Browse files
committed
Fix linting issues
1 parent 6da0f02 commit fadf565

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

spec/text-editor-component-spec.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ class DummyElement extends HTMLElement {
2424
}
2525
}
2626

27-
window.customElements.define('text-editor-component-test-element', DummyElement)
27+
window.customElements.define(
28+
'text-editor-component-test-element',
29+
DummyElement
30+
);
2831

29-
document.createElement('text-editor-component-test-element')
32+
document.createElement('text-editor-component-test-element');
3033

3134
const editors = [];
3235
let verticalScrollbarWidth, horizontalScrollbarHeight;

0 commit comments

Comments
 (0)