funky-framadate-front/src/app/shared/components/spinner/spinner.component.spec.ts

25 lines
606 B
TypeScript
Raw Normal View History

2019-08-09 15:14:23 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SpinnerComponent } from './spinner.component';
2019-08-09 15:14:23 +02:00
describe('SpinnerComponent', () => {
let component: SpinnerComponent;
let fixture: ComponentFixture<SpinnerComponent>;
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [SpinnerComponent],
2020-04-21 10:50:26 +02:00
}).compileComponents();
}));
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(SpinnerComponent);
2020-04-21 10:50:26 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-08-09 15:14:23 +02:00
});