Files
doneit-web/src/app/store/presidential-actions-store.service.spec.ts
T
2021-07-21 19:08:31 +01:00

17 lines
449 B
TypeScript

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