mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
28 lines
791 B
TypeScript
28 lines
791 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { AdminWorkflowPageComponent } from './admin-workflow-page.component';
|
|
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
|
|
describe('AdminSearchPageComponent', () => {
|
|
let component: AdminWorkflowPageComponent;
|
|
let fixture: ComponentFixture<AdminWorkflowPageComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [AdminWorkflowPageComponent],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AdminWorkflowPageComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|