25 lines
633 B
TypeScript
25 lines
633 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { FeedPage } from './feed.page';
|
|
|
|
describe('FeedPage', () => {
|
|
let component: FeedPage;
|
|
let fixture: ComponentFixture<FeedPage>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ FeedPage ],
|
|
imports: [IonicModule.forRoot()]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(FeedPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|