FunGame-Web/src/app/components/feed-card/feed-card.component.spec.ts
2025-05-30 18:55:10 +08:00

25 lines
711 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { FeedCardComponent } from './feed-card.component';
describe('FeedCardComponent', () => {
let component: FeedCardComponent;
let fixture: ComponentFixture<FeedCardComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ FeedCardComponent ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(FeedCardComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});