sc-portal/app/src/app/machines/helpers/migrations.service.spec.ts
Dragos 069afd02b1 TRIX-26 affinity rule editor
also renamed all occurrences of "instance" to "machine" because there were many inconsistencies
2021-06-01 10:55:41 +03:00

17 lines
377 B
TypeScript

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();
});
});