funky-framadate-front/src/app/core/components/selectors/theme-selector/theme-selector.component.sp...

25 lines
649 B
TypeScript
Raw Normal View History

2020-04-02 16:36:09 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ThemeSelectorComponent } from './theme-selector.component';
describe('ThemeSelectorComponent', () => {
2020-04-21 10:50:26 +02:00
let component: ThemeSelectorComponent;
let fixture: ComponentFixture<ThemeSelectorComponent>;
2020-04-02 16:36:09 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ThemeSelectorComponent],
}).compileComponents();
}));
2020-04-02 16:36:09 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(ThemeSelectorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2020-04-02 16:36:09 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2020-04-02 16:36:09 +02:00
});