From 521f6fe3f1f65ebcaacebd7dc3a90813430620fa Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 24 Sep 2021 09:18:28 -0400 Subject: [PATCH] update test --- src/components/include/include.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/include/include.test.ts b/src/components/include/include.test.ts index b3d371904..5774c8343 100644 --- a/src/components/include/include.test.ts +++ b/src/components/include/include.test.ts @@ -19,7 +19,9 @@ describe('', () => { }); it('should emit sl-error when content cannot be loaded', async () => { - const el = await fixture(html` `); + const el = await fixture( + html` ` + ); const loadHandler = sinon.spy(); el.addEventListener('sl-error', loadHandler);