import { ComponentFixture, TestBed } from '@angular/core/testing'; import { RanksComponent } from './ranks.component'; describe('RanksComponent', () => { let component: RanksComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [RanksComponent] }) .compileComponents(); fixture = TestBed.createComponent(RanksComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });