activation improve

This commit is contained in:
Peter Maquiran
2023-02-08 09:53:21 +01:00
parent 4682371286
commit 7652db7063
6 changed files with 84 additions and 21 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ActiveTabService } from './active-tab.service';
describe('ActiveTabService', () => {
let service: ActiveTabService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ActiveTabService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});