CompUGE-Bench / src /app /state_management /services /app-state.service.spec.ts
Ahmad Shallouf
initialize
1bc149f
raw
history blame contribute delete
368 Bytes
import { TestBed } from '@angular/core/testing';
import { AppStateService } from './app-state.service';
describe('AppStateService', () => {
let service: AppStateService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AppStateService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});