angular-6-calendar-week-hours-view
Version:
This project supports on Angular 6.0+. and aims to provide an alternative view to those already provided on [Angular Calendar](https://github.com/mattlewis92/angular-calendar) v0.25.2. based out of [Angular Calendar Week Hours View](https://github.com/Inn
26 lines (20 loc) • 791 B
text/typescript
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {CalendarWeekHoursViewComponent} from './calendar-week-hours-view.component';
describe('AngularCalendarWeekHoursViewComponent', () => {
let component: CalendarWeekHoursViewComponent;
let fixture: ComponentFixture<CalendarWeekHoursViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [CalendarWeekHoursViewComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CalendarWeekHoursViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});