forked from hazza/dspace-angular
28 lines
792 B
TypeScript
28 lines
792 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { AdminSearchPageComponent } from './admin-search-page.component';
|
|
import { NO_ERRORS_SCHEMA } from '@angular/core';
|
|
|
|
describe('AdminSearchPageComponent', () => {
|
|
let component: AdminSearchPageComponent;
|
|
let fixture: ComponentFixture<AdminSearchPageComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [AdminSearchPageComponent],
|
|
schemas: [NO_ERRORS_SCHEMA]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AdminSearchPageComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|