import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { DashEditorComponent } from './dash-editor.component';

describe('DashEditorComponent', () => {
  let component: DashEditorComponent;
  let fixture: ComponentFixture<DashEditorComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ DashEditorComponent ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(DashEditorComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
