feat: add star rating component and integrate it in HotelItem

This commit is contained in:
Jan K9f 2024-09-24 07:19:19 +02:00
parent ee61ef13db
commit e8683dad06
Signed by: jank
GPG key ID: B267751B8AE29EFE
6 changed files with 184 additions and 2 deletions

View file

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