blob: 7c82913bdaa78c7bc98817c38249d5b37b79820b [file] [log] [blame]
Stone, Avi (as206k)9b2ceb32018-04-12 16:36:39 +03001import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { LoaderComponent } from './loader.component';
4
5describe('LoaderComponent', () => {
6 let component: LoaderComponent;
7 let fixture: ComponentFixture<LoaderComponent>;
8
9 beforeEach(
10 async(() => {
11 TestBed.configureTestingModule({
12 declarations: [LoaderComponent]
13 }).compileComponents();
14 })
15 );
16
17 beforeEach(() => {
18 fixture = TestBed.createComponent(LoaderComponent);
19 component = fixture.componentInstance;
20 fixture.detectChanges();
21 });
22
23 it('should create', () => {
24 expect(component).toBeTruthy();
25 });
26});