您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
690 B

  1. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { IonicModule } from '@ionic/angular';
  3. import { MatchDetailsPage } from './match-details.page';
  4. describe('MatchDetailsPage', () => {
  5. let component: MatchDetailsPage;
  6. let fixture: ComponentFixture<MatchDetailsPage>;
  7. beforeEach(async(() => {
  8. TestBed.configureTestingModule({
  9. declarations: [ MatchDetailsPage ],
  10. imports: [IonicModule.forRoot()]
  11. }).compileComponents();
  12. fixture = TestBed.createComponent(MatchDetailsPage);
  13. component = fixture.componentInstance;
  14. fixture.detectChanges();
  15. }));
  16. it('should create', () => {
  17. expect(component).toBeTruthy();
  18. });
  19. });