Display qualifications list in homepage

This commit is contained in:
Phan Huy Tran
2024-12-18 13:23:01 +01:00
parent 53c0fde21f
commit f0ecf3db11
9 changed files with 79 additions and 2 deletions

View File

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