import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { WriteComponent } from './write.component'; describe('Message::WriteComponent', () => { let component: WriteComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [WriteComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(WriteComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });