24 lines
635 B
TypeScript
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();
|
|
});
|
|
});
|