Sengi-Windows-MacOS-Linux/src/app/components/floating-column/settings/settings.component.spec.ts

26 lines
643 B
TypeScript
Raw Normal View History

2018-09-10 03:55:16 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2018-09-22 06:22:51 +02:00
import { SettingsComponent } from './settings.component';
2018-09-10 03:55:16 +02:00
2018-10-28 21:58:06 +01:00
xdescribe('SettingsComponent', () => {
2018-09-22 06:22:51 +02:00
let component: SettingsComponent;
let fixture: ComponentFixture<SettingsComponent>;
2018-09-10 03:55:16 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2018-09-22 06:22:51 +02:00
declarations: [ SettingsComponent ]
2018-09-10 03:55:16 +02:00
})
.compileComponents();
}));
beforeEach(() => {
2018-09-22 06:22:51 +02:00
fixture = TestBed.createComponent(SettingsComponent);
2018-09-10 03:55:16 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});