-
Reid Givens authored
added a service that tracks local job submission actions (can track others, but only implimented for jobs). Submitting jobs will lock that job from being submitted again (local only) for 5 minutes.
Reid Givens authoredadded a service that tracks local job submission actions (can track others, but only implimented for jobs). Submitting jobs will lock that job from being submitted again (local only) for 5 minutes.
actions.service.spec.ts 334 B
import {TestBed} from '@angular/core/testing';
import {ActionsService} from './actions.service';
describe('ActionsService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ActionsService = TestBed.get(ActionsService);
expect(service).toBeTruthy();
});
});