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