Files
dspace-angular/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs.component.spec.ts
2023-12-22 17:26:46 +01:00

26 lines
763 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AdminNotifyLogsComponent } from './admin-notify-logs.component';
import { TranslateModule } from '@ngx-translate/core';
describe('AdminNotifyLogsComponent', () => {
let component: AdminNotifyLogsComponent;
let fixture: ComponentFixture<AdminNotifyLogsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TranslateModule.forRoot()],
declarations: [ AdminNotifyLogsComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(AdminNotifyLogsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});