追記
jest 23.5.0で修正されました
概要
jest
をupgradeしたら
● 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>)
と言われてテストがコケるようになった。
対応
pakcage.jsonに以下の設定を追加するとよい
package.json
+ "jest": {
+ "testURL": "http://localhost/"
+ }
参考