added skill-cards

This commit is contained in:
2026-01-21 07:28:34 +01:00
parent 7f7ff008e2
commit da38de3159
12 changed files with 315 additions and 0 deletions

View File

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