blob: ba1dbd4362ebcfddcd262fc30de07f4beeb466e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { TestBed } from '@angular/core/testing';
import { LocalStorageService } from './local-storage.service';
describe('LocalStorageService', () => {
let service: LocalStorageService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LocalStorageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
|