Skip to content

Commit

Permalink
fix render hook trouble with the import
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegMoshkovich committed Aug 23, 2022
1 parent dfcca3e commit eaf8341
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"@mui/styled-engine": "^5.8.7",
"@mui/styles": "^5.9.2",
"@octokit/rest": "^19.0.3",
"@testing-library/react-hooks": "^8.0.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/Components/ItemProperties.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react'
import {act, render, renderHook, screen, waitFor} from '@testing-library/react'
import {act, render, screen, waitFor} from '@testing-library/react'
import {renderHook} from '@testing-library/react-hooks'
import ShareMock from '../ShareMock'
import {MockModel} from '../utils/IfcMock.test'
import useStore from '../store/useStore'
Expand Down
3 changes: 2 additions & 1 deletion src/Components/SideDrawer.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react'
import {act, render, renderHook, screen, waitFor} from '@testing-library/react'
import {act, render, screen, waitFor} from '@testing-library/react'
import {renderHook} from '@testing-library/react-hooks'
import useStore from '../store/useStore'
import ShareMock from '../ShareMock'
import SideDrawerWrapper from './SideDrawer'
Expand Down

0 comments on commit eaf8341

Please sign in to comment.