You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
603B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CameraDialogComponent } from './camera-dialog.component';
  3. describe('CameraDialogComponent', () => {
  4. let component: CameraDialogComponent;
  5. let fixture: ComponentFixture<CameraDialogComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [CameraDialogComponent],
  9. });
  10. fixture = TestBed.createComponent(CameraDialogComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });