mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
26 lines
787 B
TypeScript
26 lines
787 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AdminNotifyOutgoingComponent } from './admin-notify-outgoing.component';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
describe('AdminNotifyLogsComponent', () => {
|
|
let component: AdminNotifyOutgoingComponent;
|
|
let fixture: ComponentFixture<AdminNotifyOutgoingComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot()],
|
|
declarations: [ AdminNotifyOutgoingComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(AdminNotifyOutgoingComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|