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 { ScriptHelpComponent } from './script-help.component';
describe('ScriptHelpComponent', () => {
let component: ScriptHelpComponent;
let fixture: ComponentFixture<ScriptHelpComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ScriptHelpComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ScriptHelpComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});