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