1
0

created new process page

This commit is contained in:
lotte
2020-03-19 16:20:41 +01:00
committed by Art Lowel
parent b535d166e0
commit 1cb39cef41
25 changed files with 460 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ScriptsSelectComponent } from './scripts-select.component';
describe('ScriptsSelectComponent', () => {
let component: ScriptsSelectComponent;
let fixture: ComponentFixture<ScriptsSelectComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ScriptsSelectComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ScriptsSelectComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});