From b33022425e4e98aa51e71f69abac7e2978cd0176 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Mon, 26 Sep 2022 14:19:04 +0200 Subject: [PATCH] [test] Remove localStorage from the test env (#34449) Signed-off-by: Olivier Tassinari --- test/utils/createDOM.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/createDOM.js b/test/utils/createDOM.js index 7a54d74d369f91..867653ea38ccd8 100644 --- a/test/utils/createDOM.js +++ b/test/utils/createDOM.js @@ -23,7 +23,7 @@ const blacklist = ['sessionStorage', 'localStorage']; function createDOM() { const dom = new JSDOM('', { pretendToBeVisual: true, - url: 'http://localhost', // https://github.com/jsdom/jsdom/issues/2383 + url: 'http://localhost', }); global.window = dom.window; // Not yet supported: https://github.com/jsdom/jsdom/issues/2152