Refactor tooltip and reviews-stars libraries; update CI workflow

- Updated the CI workflow to build and test only the "reviews-stars" project.
- Removed unnecessary test files for the "reviews-stars" and "tooltip" libraries.
- Changed the export of TooltipComponent from default to named export.
This commit is contained in:
2025-11-30 13:49:38 +01:00
parent 5ddd6501b6
commit d224f139b4
5 changed files with 3 additions and 672 deletions

View File

@@ -13,7 +13,7 @@ import { Placement } from './models/placement.enum';
import { basicStyles, positioning, variables } from './styles';
@customElement('z-tooltip')
export default class TooltipComponent extends LitElement {
export class TooltipComponent extends LitElement {
/** Private variables */
private readonly _visibilityController = new VisibilityController(this);
private readonly _positionController = new PositionController(this);

View File

@@ -1,7 +0,0 @@
import { tooltip } from './tooltip.component';
describe('tooltip', () => {
it('should work', () => {
expect(tooltip()).toEqual('tooltip');
});
});