repo.me/front/src/app/component/download-image/download-image.component.spec.ts
2024-04-20 23:06:09 +08:00

24 lines
646 B
TypeScript

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