Spaces:
Sleeping
Sleeping
| 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(); | |
| }); | |
| }); | |