Stone, Avi (as206k) | 9b2ceb3 | 2018-04-12 16:36:39 +0300 | [diff] [blame] | 1 | import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
| 2 | |
| 3 | import { DiagramComponent } from './diagram.component'; |
| 4 | |
| 5 | describe('DiagramComponent', () => { |
| 6 | let component: DiagramComponent; |
| 7 | let fixture: ComponentFixture<DiagramComponent>; |
| 8 | |
| 9 | beforeEach( |
| 10 | async(() => { |
| 11 | TestBed.configureTestingModule({ |
| 12 | declarations: [DiagramComponent] |
| 13 | }).compileComponents(); |
| 14 | }) |
| 15 | ); |
| 16 | |
| 17 | beforeEach(() => { |
| 18 | fixture = TestBed.createComponent(DiagramComponent); |
| 19 | component = fixture.componentInstance; |
| 20 | fixture.detectChanges(); |
| 21 | }); |
| 22 | |
| 23 | it('should create', () => { |
| 24 | expect(component).toBeTruthy(); |
| 25 | }); |
| 26 | }); |