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