fixed log4j issue
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / toolbar / toolbar.component.spec.ts
1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { ToolbarComponent } from './toolbar.component';
4
5 import { Component } from '@angular/core';
6
7 @Component({selector: 'app-toolbar', template: ''})
8 class ToolbarStubComponent{}
9
10 describe('ToolbarComponent', () => {
11   let component: ToolbarComponent;
12   let fixture: ComponentFixture<ToolbarComponent>;
13
14   beforeEach(async(() => {
15     TestBed.configureTestingModule({
16       declarations: [ ToolbarComponent, ToolbarStubComponent ]
17     })
18     .compileComponents();
19   }));
20
21   beforeEach(() => {
22     fixture = TestBed.createComponent(ToolbarComponent);
23     component = fixture.componentInstance;
24     fixture.detectChanges();
25   });
26
27   it('should create', () => {
28     expect(component).toBeTruthy();
29   });
30 });