Files
plebeian-signer/projects/chrome/src/app/components/home/identity/identity.component.spec.ts
2025-02-01 23:23:37 +01:00

24 lines
606 B
TypeScript

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