25 lines
639 B
TypeScript
Raw Normal View History

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