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