エラー内容
エラー内容
FAIL test/unit/specs/HelloWorld.spec.js
● Test suite failed to run
SecurityError: localStorage is not available for opaque origins
at Window.get localStorage [as localStorage] (node_modules/jsdom/lib/jsdom/browser/Window.js:257:15)
at Array.forEach (<anonymous>)
対応方法
jest.config.js
に testURL: "http://localhost/"
を追加
jest.config.js
module.exports = {
+ testURL: "http://localhost/",
// ...
}