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