sc-portal/app/src/app/machines/helpers/snapshots.service.spec.ts

17 lines
372 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { SnapshotsService } from './snapshots.service';
describe('SnapshotsService', () => {
let service: SnapshotsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SnapshotsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});