Unit testing

Typescript ❤️

An optional package for Pragmatic drag and drop with helpers for unit testing

Install
yarn add @atlaskit/pragmatic-drag-and-drop-unit-testing
Source
Bundle
Changelog
Latest

1.1.0

Minor Changes

  • #123321 d02023dd064df - Adding a new polyfill for DOMRect. This polyfill helpful for unit testing environments that don't implement DOMRect, such as jsdom.

    import '@atlaskit/pragmatic-drag-and-drop/unit-testing/dom-rect-polyfill';
    

    Setup using jest:

    // jest.config.js
    module.exports = {
    	setupFiles: ['./test/setup-dom-rect.js'],
    };
    
    // ./test/setup-dom-rect.js
    import '@atlaskit/pragmatic-drag-and-drop/unit-testing/dom-rect-polyfill';
    

Component "unit-testing" doesn't have any documentation.