import {BlurhashImg} from '../blurhash-img'; import {fixture, html} from '@open-wc/testing'; const assert = chai.assert; suite('blurhash-img', () => { test('is defined', () => { const el = document.createElement('blurhash-img'); assert.instanceOf(el, BlurhashImg); }); test('renders with default values', async () => { const el = await fixture( html`` ); assert.shadowDom.equal( el, `
` ); }); });