3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jest: SecurityError: localStorage is not available for opaque origins

Posted at

jestを実行するとこんな感じのエラーが出る。

 ● 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)

jest.config.jsにtestURL(任意のurl)を追記すれば解決。

module.exports = {
  testURL: 'http://localhost',
}

現状jestのデフォルトがabout:blankだが、待ってればlocalhostに変わりそうな雰囲気はある。

jest : SecurityError: localStorage is not available for opaque origins · Issue #2304 · jsdom/jsdom

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?