Files
doneit-web/src/app/store/pendestes-store.service.spec.ts
T

17 lines
398 B
TypeScript
Raw Normal View History

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