next-ucap-messenger/projects/ucap-webmessenger-ui/src/lib/components/sticker-selector.component.spec.ts

26 lines
692 B
TypeScript
Raw Normal View History

2019-11-20 18:04:24 +09:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { StickerSelectorComponent } from './sticker-selector.component';
describe('StickerSelectorComponent', () => {
let component: StickerSelectorComponent;
let fixture: ComponentFixture<StickerSelectorComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ StickerSelectorComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(StickerSelectorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});