ionic-translator/src/app/api/history.service.spec.ts
surtur 683c88652f
All checks were successful
continuous-integration/drone/push Build is passing
feat: save translation history
* for now it's not displayed anywhere [wip]
2020-11-10 19:35:03 +01:00

17 lines
362 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { HistoryService } from './history.service';
describe('HistoryService', () => {
let service: HistoryService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(HistoryService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});