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