/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
import { newSpecPage } from '@stencil/core/testing';
import { MbImageBox } from '../mb-image-box';
describe('mb-image-box', () => {
it('renders', async () => {
const page = await newSpecPage({
components: [MbImageBox],
html: ``,
});
expect(page.root).toEqualHtml(`
`);
});
});