import React from 'react'; import noop from 'lodash/noop'; import { render, screen } from '../../../test-utils/testing-library'; import Footer from '../Footer'; import { ERROR_CODE_UPLOAD_FILE_LIMIT } from '../../../constants'; describe('elements/content-uploader/Footer', () => { const defaultProps = { fileLimit: 10, hasFiles: false, isDone: false, isLoading: false, onCancel: noop, onUpload: noop, }; const renderComponent = (props = {}) => render(