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