UNPKG

jangular-cli

Version:

A powerful CLI tool for rapidly bootstrapping Angular 17 & Spring Boot (Java 21) applications with integrated security, services, and enterprise-ready best practices.

24 lines (18 loc) 668 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { UserLoginHistoryComponent } from './user-login-history.component'; describe('UserLoginHistoryComponent', () => { let component: UserLoginHistoryComponent; let fixture: ComponentFixture<UserLoginHistoryComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [UserLoginHistoryComponent] }) .compileComponents(); fixture = TestBed.createComponent(UserLoginHistoryComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });