PasGen/src/app/components/password-list/password-list.component.spec.ts
2025-03-29 15:05:01 +01:00

24 lines
635 B
TypeScript

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