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