bullhorn/career-portal

View on GitHub
src/app/services/share/share.service.spec.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { TestBed, inject } from '@angular/core/testing';

import { ShareService } from './share.service';

describe('ShareService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [ShareService],
    });
  });

  it('should be created', inject([ShareService], (service: ShareService) => {
    expect(service).toBeTruthy();
  }));
});