This commit is contained in:
2024-10-19 08:16:51 +03:00
parent 17697d7f77
commit 07728cbbb0
24 changed files with 1875 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
describe('Hello World Test', () => {
it('should display hello world', () => {
// Render a simple component
render(<div>Hello World</div>);
// Check if "Hello World" is in the document
const helloWorldElement = screen.getByText(/hello world/i);
expect(helloWorldElement).toBeInTheDocument();
});
});