13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ArticleService } from './article.service';
|
|
|
|
describe('ArticleService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: ArticleService = TestBed.get(ArticleService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|