25 lines
646 B
TypeScript
Raw Normal View History

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