mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
420aa4a657
React File Tree GitOrigin-RevId: fb3141ba8cd9ca0d68e87edb74764a360144c8fe
18 lines
536 B
JavaScript
18 lines
536 B
JavaScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import FileTreeContext from '../../../../../frontend/js/features/file-tree/components/file-tree-context'
|
|
|
|
export default (children, options = {}) => {
|
|
let { contextProps = {}, ...renderOptions } = options
|
|
contextProps = {
|
|
projectId: '123abc',
|
|
rootFolder: [{}],
|
|
hasWritePermissions: true,
|
|
onSelect: () => {},
|
|
...contextProps
|
|
}
|
|
return render(
|
|
<FileTreeContext {...contextProps}>{children}</FileTreeContext>,
|
|
renderOptions
|
|
)
|
|
}
|