feat(barcode reader): add wrapper for the webcomponent

This commit is contained in:
2026-01-17 18:54:36 -03:00
parent ead327d44f
commit 4655ba4f64
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BarCodeReaderWrapper } from './bar-code-reader';
describe('BarCodeReaderWrapper', () => {
let component: BarCodeReaderWrapper;
let fixture: ComponentFixture<BarCodeReaderWrapper>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [BarCodeReaderWrapper]
})
.compileComponents();
fixture = TestBed.createComponent(BarCodeReaderWrapper);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});