This commit is contained in:
2026-04-20 11:50:59 +05:30
parent 9d21d6c802
commit 0c9219b059
56 changed files with 13779 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* @format
*/
import React from 'react';
import ReactTestRenderer from 'react-test-renderer';
import App from '../App';
test('renders correctly', async () => {
await ReactTestRenderer.act(() => {
ReactTestRenderer.create(<App />);
});
});