mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { AppProcessStatusService } from './app-process-status.service';
|
|
|
|
describe('AppProcessStatusService', () => {
|
|
let service: AppProcessStatusService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(AppProcessStatusService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|