moya-locale.service.spec.ts
399 Bytes
import { TestBed, inject } from '@angular/core/testing';
import { MoyaLocaleService } from './moya-locale.service';
describe('MoyaLocaleService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [MoyaLocaleService]
});
});
it('should be created', inject([MoyaLocaleService], (service: MoyaLocaleService) => {
expect(service).toBeTruthy();
}));
});