feat: add contact form

This commit is contained in:
2025-12-11 21:32:31 -03:00
parent 65fb14aea5
commit 158440d5c8
4 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ContactForm } from './contact-form';
import { STRINGS_INJECTOR } from '../../app.config';
import { strings } from '../../strings';
describe('ContactForm', () => {
let component: ContactForm;
let fixture: ComponentFixture<ContactForm>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ContactForm],
providers: [{ provide: STRINGS_INJECTOR, useValue: strings }],
})
.compileComponents();
TestBed.inject(STRINGS_INJECTOR);
fixture = TestBed.createComponent(ContactForm);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});