fix worklist issue
parent
927bfbace5
commit
929844d1ef
@ -0,0 +1,3 @@
|
|||||||
|
<p>
|
||||||
|
mo-item-history works!
|
||||||
|
</p>
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { MoItemHistoryComponent } from './mo-item-history.component';
|
||||||
|
|
||||||
|
describe('MoItemHistoryComponent', () => {
|
||||||
|
let component: MoItemHistoryComponent;
|
||||||
|
let fixture: ComponentFixture<MoItemHistoryComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ MoItemHistoryComponent ],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(MoItemHistoryComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-mo-item-history',
|
||||||
|
templateUrl: './mo-item-history.component.html',
|
||||||
|
styleUrls: ['./mo-item-history.component.scss'],
|
||||||
|
})
|
||||||
|
export class MoItemHistoryComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit() {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue