push to merge with worklist work
parent
5208584999
commit
b27f976bc9
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,3 @@
|
|||||||
|
<p>
|
||||||
|
work-list-main-itg works!
|
||||||
|
</p>
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { WorkListMainItgComponent } from './work-list-main-itg.component';
|
||||||
|
|
||||||
|
describe('WorkListMainItgComponent', () => {
|
||||||
|
let component: WorkListMainItgComponent;
|
||||||
|
let fixture: ComponentFixture<WorkListMainItgComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ WorkListMainItgComponent ],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(WorkListMainItgComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-work-list-main-itg',
|
||||||
|
templateUrl: './work-list-main-itg.component.html',
|
||||||
|
styleUrls: ['./work-list-main-itg.component.scss'],
|
||||||
|
})
|
||||||
|
export class WorkListMainItgComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit() {}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue