This repository has been archived on 2024-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
sc-portal/app/src/app/machines/helpers/migrations.service.spec.ts

17 lines
377 B
TypeScript
Raw Normal View History

2021-04-07 14:26:28 +03:00
import { TestBed } from '@angular/core/testing';
import { MigrationsService } from './migrations.service';
describe('MigrationsService', () => {
let service: MigrationsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(MigrationsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});