|
|
@@ -0,0 +1,25 @@ |
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
|
|
|
|
|
|
|
import { WidgetsHolderComponent } from './widgets-holder.component'; |
|
|
|
|
|
|
|
describe('WidgetsHolderComponent', () => { |
|
|
|
let component: WidgetsHolderComponent; |
|
|
|
let fixture: ComponentFixture<WidgetsHolderComponent>; |
|
|
|
|
|
|
|
beforeEach(async(() => { |
|
|
|
TestBed.configureTestingModule({ |
|
|
|
declarations: [ WidgetsHolderComponent ] |
|
|
|
}) |
|
|
|
.compileComponents(); |
|
|
|
})); |
|
|
|
|
|
|
|
beforeEach(() => { |
|
|
|
fixture = TestBed.createComponent(WidgetsHolderComponent); |
|
|
|
component = fixture.componentInstance; |
|
|
|
fixture.detectChanges(); |
|
|
|
}); |
|
|
|
|
|
|
|
it('should create', () => { |
|
|
|
expect(component).toBeTruthy(); |
|
|
|
}); |
|
|
|
}); |