mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-13 06:25:21 +00:00
16 lines
395 B
TypeScript
16 lines
395 B
TypeScript
|
import { TestBed, inject } from '@angular/core/testing';
|
||
|
|
||
|
import { SnapshotService } from './snapshot.service';
|
||
|
|
||
|
describe('SnapshotService', () => {
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
providers: [SnapshotService]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// it('should be created', inject([SnapshotService], (service: SnapshotService) => {
|
||
|
// expect(service).toBeTruthy();
|
||
|
// }));
|
||
|
});
|