作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Firebase SDK for Cloud Functions Quickstart 的所有示例测试中,都使用了 Mocha/Chai 和 Sinon...试图改用 Jest,我想知道 sinon.stub() 的正确等价物是什么?
我尝试了以下(仅用于测试 jest.mock() 验收...
const sinon = require('sinon');
const jest = require('jest');
describe('Cloud Functions', () => {
before(() => {
let myFunctions, adminInitStub;
let adminInitMock;
adminInitStub = sinon.stub(admin, 'initializeApp');
adminInitMock = jest.mock(admin, 'initializeApp');
myFunctions = require('../index');
myFunctions = require('../index');
但是我得到一个错误:
1 失败
1) 云功能 “首先”钩子(Hook): TypeError: jest.mock 不是函数
我哪里错了......但我无法理解感谢反馈
最佳答案
已解决...
从mocking-es-and-commonjs-modules-with-jest-mock上明白了
However, when using export with require we would see an error such as:
TypeError: ourCode is not a function
The CommonJS module does not understand the ES Module it is trying to require. This is easily fixed, by adding a .functionNameBeingExported to the require, which for a default export is default.
externalModule.js
const ourCode = () => 'result';
export default ourCode;
testSubject.js
const ourCode = require('./externalModule').default;
// use ourCode()
关于javascript - jest.mock() 等同于 sinon.stub(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53608880/
判断这2个相似的Uris实际上相同的标准方法是什么? var a = new Uri("http://sample.com/sample/"); var b = new Uri("http://sam
这个问题在这里已经有了答案: Why does "true" == true show false in JavaScript? (5 个答案) 关闭 5 年前。 可能我很困惑,但我无法理解这个愚蠢
我是一名优秀的程序员,十分优秀!