16 lines
357 B
TypeScript
16 lines
357 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { SharedService } from './shared-service';
|
|
|
|
describe('SharedService', () => {
|
|
let service: SharedService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(SharedService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|