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