pracowniaapp2Front/src/app/single-post/single-post.component.spec.ts

26 lines
657 B
TypeScript

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