UNPKG

@engie-group/fluid-design-system-angular

Version:

Fluid Design System Angular

26 lines (20 loc) 635 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SpinnerComponent } from './spinner.component'; describe('SpinnerComponent', () => { let component: SpinnerComponent; let fixture: ComponentFixture<SpinnerComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ SpinnerComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SpinnerComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });