@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
17 lines (12 loc) • 363 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { IdTokenService } from './id-token.service';
describe('IdTokenService', () => {
let service: IdTokenService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(IdTokenService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});