diff --git a/src/test/my-element_test.ts b/src/test/my-element_test.ts
index 3f496b6..ce67090 100644
--- a/src/test/my-element_test.ts
+++ b/src/test/my-element_test.ts
@@ -7,7 +7,6 @@
import {MyElement} from '../my-element.js';
import {fixture, assert} from '@open-wc/testing';
-import {UncompiledTemplateResult} from 'lit';
import {html} from 'lit/static-html.js';
suite('my-element', () => {
@@ -17,9 +16,7 @@ suite('my-element', () => {
});
test('renders with default values', async () => {
- const el = await fixture(
- html`` as UncompiledTemplateResult
- );
+ const el = await fixture(html``);
assert.shadowDom.equal(
el,
`
@@ -31,9 +28,7 @@ suite('my-element', () => {
});
test('renders with a set name', async () => {
- const el = await fixture(
- html`` as UncompiledTemplateResult
- );
+ const el = await fixture(html``);
assert.shadowDom.equal(
el,
`
@@ -45,9 +40,7 @@ suite('my-element', () => {
});
test('handles a click', async () => {
- const el = (await fixture(
- html`` as UncompiledTemplateResult
- )) as MyElement;
+ const el = (await fixture(html``)) as MyElement;
const button = el.shadowRoot!.querySelector('button')!;
button.click();
await el.updateComplete;
@@ -62,9 +55,7 @@ suite('my-element', () => {
});
test('styling applied', async () => {
- const el = (await fixture(
- html`` as UncompiledTemplateResult
- )) as MyElement;
+ const el = (await fixture(html``)) as MyElement;
await el.updateComplete;
assert.equal(getComputedStyle(el).paddingTop, '16px');
});