1234567891011121314151617 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { YuyuePage } from './yuyue.page';
- describe('YuyuePage', () => {
- let component: YuyuePage;
- let fixture: ComponentFixture<YuyuePage>;
- beforeEach(() => {
- fixture = TestBed.createComponent(YuyuePage);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|