1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove props from dnd mock to make snapshot diffs smaller

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-12-05 15:46:50 -05:00
parent 8de3e75191
commit e4adc3f1e3

View File

@ -7,7 +7,9 @@ import React from "react";
import type {
DragDropContextProps,
DraggableProps,
DraggableProvidedDraggableProps,
DroppableProps,
DroppableProvidedProps,
} from "react-beautiful-dnd";
export const DragDropContext = ({ children }: DragDropContextProps) => <>{ children }</>;
@ -16,10 +18,7 @@ export const Draggable = ({ children }: DraggableProps) => (
{
children(
{
draggableProps: {
"data-rbd-draggable-context-id": "some-mock-rbd-draggable-context-id",
"data-rbd-draggable-id": "some-mock-rbd-draggable-id",
},
draggableProps: {} as DraggableProvidedDraggableProps,
innerRef: () => {},
},
{
@ -43,10 +42,7 @@ export const Droppable = ({ children }: DroppableProps) => (
{
children(
{
droppableProps: {
"data-rbd-droppable-context-id": "some-mock-rbd-droppable-context-id",
"data-rbd-droppable-id": "some-mock-rbd-droppable-id",
},
droppableProps: {} as DroppableProvidedProps,
innerRef: () => {},
},
{