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