angular-t9n
Version:
A translation tool for Angular i18n
17 lines (12 loc) • 393 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { SourceOrphansService } from './source-orphans.service';
describe('SourceOrphansService', () => {
let service: SourceOrphansService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SourceOrphansService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});