Added loginhistory component

This commit is contained in:
2024-06-03 23:52:12 +02:00
parent 1e464f6fb8
commit 1462e141ad
4 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LoginhistoryComponent } from './loginhistory.component';
describe('LoginhistoryComponent', () => {
let component: LoginhistoryComponent;
let fixture: ComponentFixture<LoginhistoryComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [LoginhistoryComponent]
})
.compileComponents();
fixture = TestBed.createComponent(LoginhistoryComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});