first chrome implementation

This commit is contained in:
DEV Sam Hayes
2025-01-10 19:37:10 +01:00
parent dc7a980dc5
commit a652718bc7
175 changed files with 18526 additions and 610 deletions

View File

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