feat: add VerificationComponent with template, styles, and tests

This commit is contained in:
itsscb 2025-03-04 23:06:20 +01:00
parent 37b8827007
commit f41c502e37
4 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1 @@
<p>verification works!</p>

View File

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

View File

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-verification',
imports: [],
templateUrl: './verification.component.html',
styleUrl: './verification.component.css'
})
export class VerificationComponent {
}