【发布时间】:2017-12-23 10:35:03
【问题描述】:
我正在尝试将 Jest 用于我的 Node Js 测试(特别是 AWS 的 Lambda),但我在模拟异步等待功能时遇到了困难。
我正在使用 babel-jest 和 jest-cli。以下是我的模块。 我正在访问第一个 console.log,但第二个 console.log 返回 undefined 并且我的测试崩溃。
关于如何实现此功能的任何想法?
下面是我的模块:
import {callAnotherFunction} from '../../../utils';
export const handler = async (event, context, callback) => {
const {emailAddress, emailType} = event.body;
console.log("**** GETTING HERE = 1")
const sub = await callAnotherFunction(emailAddress, emailType);
console.log("**** Not GETTING HERE = 2", sub) // **returns undefined**
// do something else here
callback(null, {success: true, returnValue: sub})
}
我的测试
import testData from '../data.js';
import { handler } from '../src/index.js';
jest.mock('../../../utils');
beforeAll(() => {
const callAnotherLambdaFunction= jest.fn().mockReturnValue(Promise.resolve({success: true}));
});
describe('>>> SEND EMAIL LAMBDA', () => {
test('returns a good value', done => {
function callback(dataTest123) {
expect(dataTest123).toBe({success: true, returnValue: sub);
done();
}
handler(testData, null, callback);
},10000);
})
【问题讨论】:
标签: javascript node.js unit-testing aws-lambda jestjs