UNPKG

@microblink/blinkinput-in-browser-sdk

Version:

A simple barcode scanning library for WebAssembly-enabled browsers.

16 lines (12 loc) 385 B
/** * Copyright (c) Microblink Ltd. All rights reserved. */ import { newE2EPage } from '@stencil/core/testing'; describe('mb-image-box', () => { it('renders', async () => { const page = await newE2EPage(); await page.setContent('<mb-image-box></mb-image-box>'); const element = await page.find('mb-image-box'); expect(element).toHaveClass('hydrated'); }); });