Skip to content

Commit f6fe608

Browse files
committed
fixup! Fix(web-react): FileUploaderInput className #DS-1508
1 parent 3450c1e commit f6fe608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web-react/src/components/FileUploader/__tests__/FileUploaderInput.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ describe('Listener approach', () => {
7272
});
7373
});
7474

75-
describe('mock useeffect approach', () => {
75+
describe('mock useEffect approach', () => {
7676
it('should not register onDragOver event listener during SSR', () => {
7777
jest.spyOn(React, 'useEffect').mockImplementation(() => {});
7878
const addEventListenerSpy = jest.spyOn(window, 'addEventListener');
@@ -99,7 +99,7 @@ describe('mock useeffect approach', () => {
9999
});
100100
});
101101

102-
describe('is-dragging class on drag vent', () => {
102+
describe('is-dragging class onDragOver event', () => {
103103
it('should have is-dragging class on dragOver', () => {
104104
render(<FileUploaderInput name="bagr" id="pokus" data-testid="test" />);
105105
const dropZone = screen.getAllByTestId('test')[0];

0 commit comments

Comments
 (0)