Newer
Older
import { TestBed, ComponentFixture } from '@angular/core/testing';
import { SpinnerComponent } from './spinner.component';
describe('[Shared][Component] SpinnerComponent', () => {
let component: SpinnerComponent;
let fixture: ComponentFixture<SpinnerComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [SpinnerComponent]
}).compileComponents();
fixture = TestBed.createComponent(SpinnerComponent);
component = fixture.componentInstance;
});
it('should create the component', () => {
expect(component).toBeDefined();
});
});