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