mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
18 lines
432 B
TypeScript
18 lines
432 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { LdnDirectoryService } from './ldn-directory.service';
|
|
|
|
describe('LdnDirectoryService', () => {
|
|
let service: LdnDirectoryService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(LdnDirectoryService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
// @ts-ignore
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|