blob: 529ba8ccd69441bb1ee8ed0da6d1815211de2b1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { TestBed } from '@angular/core/testing';
import { TodoListService } from './todo-list.service';
describe('TodoListServiceService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: TodoListService = TestBed.get(TodoListService);
expect(service).toBeTruthy();
});
});
|