import { TestBed } from '@angular/core/testing';

import { CustomNgbDateFormatterService } from './custom-ngb-date-formatter.service';

describe('CustomNgbDateFormatterService', () => {
  let service: CustomNgbDateFormatterService;

  beforeEach(() => {
    TestBed.configureTestingModule({});
    service = TestBed.inject(CustomNgbDateFormatterService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});