25 lines
682 B
TypeScript
Raw Normal View History

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