divise tache

This commit is contained in:
tuanvu
2026-01-05 11:00:01 +01:00
parent 66d8e6f485
commit 3aa3fa0a24
30 changed files with 149 additions and 179 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});