import { ComponentFixture, TestBed } from '@angular/core/testing'; import { LsdevlabNebularThemeComponent } from './lsdevlab-nebular-theme.component'; describe('LsdevlabNebularThemeComponent', () => { let component: LsdevlabNebularThemeComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ LsdevlabNebularThemeComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(LsdevlabNebularThemeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });