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