react-beautiful-dnd-test-utils
react-beautiful-dnd-test-utils copied to clipboard
Test utils for react-beautiful-dnd built with react-testing-library 🧤
UserEvent v14 introduced a couple of breaking changes that have broken compatibility with this library. * All userEvents now return promises that must be awaited/resolved * The "{space}" key code...
Here is the test: ```tsx import React, {ReactNode} from "react"; import {render, screen, within} from "@testing-library/react"; import { mockGetComputedStyle, mockDndSpacing, makeDnd, DND_DIRECTION_UP, DND_DIRECTION_DOWN, DND_DRAGGABLE_DATA_ATTR, } from "react-beautiful-dnd-test-utils"; import {DraggableProvided, DragDropContext,...
Does this library support left/right movement? I'm trying to modify the example tests to move a task to the right to the "in progress" column. Here's an example ```javascript test('moves...