1
0
This commit is contained in:
2024-10-02 13:18:22 +09:00
parent b4c67796b7
commit 70366cc5ae
24 changed files with 504 additions and 0 deletions

9
holo/src/App.test.tsx Normal file
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();
});