feat: add VerificationComponent with template, styles, and tests
This commit is contained in:
parent
37b8827007
commit
f41c502e37
@ -0,0 +1 @@
|
||||
<p>verification works!</p>
|
@ -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();
|
||||
});
|
||||
});
|
@ -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 {
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user