3b767cb816cb75bcd49d67c6e78e8e7dc364c1e4
[ccsdk/cds.git] /
1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { DesignerComponent } from './designer.component';
4
5 describe('DesignerComponent', () => {
6   let component: DesignerComponent;
7   let fixture: ComponentFixture<DesignerComponent>;
8
9   beforeEach(async(() => {
10     TestBed.configureTestingModule({
11       declarations: [ DesignerComponent ]
12     })
13     .compileComponents();
14   }));
15
16   beforeEach(() => {
17     fixture = TestBed.createComponent(DesignerComponent);
18     component = fixture.componentInstance;
19     fixture.detectChanges();
20   });
21
22   it('should create', () => {
23     expect(component).toBeTruthy();
24   });
25 });