12345678910111213141516 |
- import { TestBed } from '@angular/core/testing';
- import { PostService } from './post.service';
- describe('PostService', () => {
- let service: PostService;
- beforeEach(() => {
- TestBed.configureTestingModule({});
- service = TestBed.inject(PostService);
- });
- it('should be created', () => {
- expect(service).toBeTruthy();
- });
- });
|