blob: 4046152dc1887f5a36aecad8058ae42ef5cc5f95 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MessageBannerComponent } from './message-banner.component';
describe('MessageBannerComponent', () => {
let component: MessageBannerComponent;
let fixture: ComponentFixture<MessageBannerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MessageBannerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MessageBannerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
// it('should be created', () => {
// expect(component).toBeTruthy();
// });
});