feat(core): Add backend services, scripts, and initial test structure

This commit is contained in:
2025-11-19 18:48:54 +03:00
parent 703e11711e
commit bdf59cea47
51 changed files with 3460 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';
import { Badge } from './badge';
describe('Badge Component', () => {
it('should render the badge with the correct text', () => {
const testMessage = 'Hello, World!';
render(<Badge>{testMessage}</Badge>);
const badgeElement = screen.getByText(testMessage);
expect(badgeElement).toBeInTheDocument();
});
});