From aa18212085c52fc106d075319637b8729e0f179f Mon Sep 17 00:00:00 2001 From: tison Date: Thu, 28 Sep 2023 01:00:44 +0800 Subject: [PATCH] test: fix cannot find root (#5741) Signed-off-by: tison --- test/isFunction.spec.js | 1 + test/isTypedArray.spec.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/isFunction.spec.js b/test/isFunction.spec.js index 718662efa..61af3df82 100644 --- a/test/isFunction.spec.js +++ b/test/isFunction.spec.js @@ -13,6 +13,7 @@ import { symbol, document, realm, + root, } from './utils'; import isFunction from '../src/isFunction'; diff --git a/test/isTypedArray.spec.js b/test/isTypedArray.spec.js index ad4af533f..84ec880a1 100644 --- a/test/isTypedArray.spec.js +++ b/test/isTypedArray.spec.js @@ -1,5 +1,5 @@ import lodashStable from 'lodash'; -import { typedArrays, falsey, stubFalse, args, slice, symbol, realm } from './utils'; +import { typedArrays, falsey, stubFalse, args, slice, symbol, realm, root } from './utils'; import isTypedArray from '../src/isTypedArray'; describe('isTypedArray', () => {