post.service.spec.ts 347 B

12345678910111213141516
  1. import { TestBed } from '@angular/core/testing';
  2. import { PostService } from './post.service';
  3. describe('PostService', () => {
  4. let service: PostService;
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({});
  7. service = TestBed.inject(PostService);
  8. });
  9. it('should be created', () => {
  10. expect(service).toBeTruthy();
  11. });
  12. });