Sengi-Windows-MacOS-Linux/src/app/components/floating-column/manage-account/manage-account.component.sp...

26 lines
679 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 { ManageAccountComponent } from './manage-account.component';
2018-09-10 03:55:16 +02:00
2018-10-28 21:58:06 +01:00
xdescribe('ManageAccountComponent', () => {
2018-09-22 06:22:51 +02:00
let component: ManageAccountComponent;
let fixture: ComponentFixture<ManageAccountComponent>;
2018-09-10 03:55:16 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2018-09-22 06:22:51 +02:00
declarations: [ ManageAccountComponent ]
2018-09-10 03:55:16 +02:00
})
.compileComponents();
}));
beforeEach(() => {
2018-09-22 06:22:51 +02:00
fixture = TestBed.createComponent(ManageAccountComponent);
2018-09-10 03:55:16 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});