25 lines
646 B
TypeScript

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