Files
bbq/src/app/shared/components/imagelist/imagelist.component.spec.ts
2021-12-09 16:15:47 +08:00

24 lines
642 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ImageListComponent } from './imagelist.component';
describe('ImageListComponent', () => {
let component: ImageListComponent;
let fixture: ComponentFixture<ImageListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ImageListComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ImageListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});