src/app/menu/footer-bar/footer-bar.component.spec.ts
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FooterBarComponent } from './footer-bar.component';
import {CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
describe('FooterBarComponent', () => {
let component: FooterBarComponent;
let fixture: ComponentFixture<FooterBarComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FooterBarComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FooterBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});