import { expect, fixture } from '@open-wc/testing';
import '.';
describe('custom-card', () => {
it('renders correctly', async () => {
const element = await fixture(`
<custom-card></custom-card>
`);
expect(element).shadowDom.to.equalSnapshot();
});
});