cic-staff-client/src/app/_services/keystore.service.spec.ts

17 lines
367 B
TypeScript

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