ngx-fizz
Version:
Rich Animated icon set for AngularIO operated by animeJS engine
26 lines (20 loc) • 614 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FizzComponent } from './fizz.component';
describe('FizzComponent', () => {
let component: FizzComponent;
let fixture: ComponentFixture<FizzComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FizzComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FizzComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});