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