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