gpt4 book ai didi

node.js - jest localStorage 实现从何而来?

转载 作者:行者123 更新时间:2023-12-02 00:49:32 26 4
gpt4 key购买 nike

我创建了一个小型 Node 应用程序:

# package.json

{
"name": "testapp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest"
},
"devDependencies": {
"jest": "^24.9.0"
}
}

# index.test.js

test('localStorage', () => {
localStorage.setItem('foo', 'bar');
expect(localStorage.getItem('foo')).toBe('bar');
});

npm test 运行没有错误。

在 StackOverflow 上搜索“localStorage jest”会出现有关模拟 localStorage 的问题;我的印象是 Storage 是一个在 node.js 中不可用的浏览器 API。

那么这是如何工作的呢?

最佳答案

这是因为默认情况下 jest 使用 jsdom作为自己的test environment (请注意,您可以修改此行为)。

关于node.js - jest localStorage 实现从何而来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58873429/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com