import { ComponentFixture, TestBed } from '@angular/core/testing'; import { MainPage } from './main-page'; describe('MainPage', () => { let component: MainPage; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [MainPage] }) .compileComponents(); fixture = TestBed.createComponent(MainPage); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });