24 lines
671 B
TypeScript
24 lines
671 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { DialogSelectImageComponent } from './dialog-select-image.component';
|
|
|
|
describe('DialogSelectImageComponent', () => {
|
|
let component: DialogSelectImageComponent;
|
|
let fixture: ComponentFixture<DialogSelectImageComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [DialogSelectImageComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(DialogSelectImageComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|