From ab05b929d0510a5b6e85a425c40bb6b664360cdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernesto=20Garc=C3=ADa?= Date: Wed, 16 Oct 2024 14:25:32 -0300 Subject: [PATCH] fix: fix lodash import in to-have-selection.js Fixes https://github.com/testing-library/jest-dom/issues/641 --- src/to-have-selection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/to-have-selection.js b/src/to-have-selection.js index 55ce430..4eb7478 100644 --- a/src/to-have-selection.js +++ b/src/to-have-selection.js @@ -1,4 +1,4 @@ -import isEqualWith from 'lodash/isEqualWith' +import isEqualWith from 'lodash/isEqualWith.js' import {checkHtmlElement, compareArraysAsSet, getMessage} from './utils' /**