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