25 lines
730 B
TypeScript
25 lines
730 B
TypeScript
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { SupplyManagementIndexComponent } from './index.component';
|
|
|
|
describe('SupplyManagementIndexComponent', () => {
|
|
let component: SupplyManagementIndexComponent;
|
|
let fixture: ComponentFixture<SupplyManagementIndexComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ SupplyManagementIndexComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SupplyManagementIndexComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|