import { TestBed, inject } from '@angular/core/testing'; import { MasterLayoutService } from './master-layout.service'; describe('MasterLayoutService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [MasterLayoutService] }); }); it('should be created', inject([MasterLayoutService], (service: MasterLayoutService) => { expect(service).toBeTruthy(); })); });