1.2.0 • Published 5 years ago

@schedulino/aws-lambda-test-utils v1.2.0

Weekly downloads
68
License
GPL-3.0
Repository
github
Last release
5 years ago

aws-lambda-test-utils

Build Status

AWS Lambda mock event objects for most common AWS services.

Installation

$ npm install --save-dev @schedulino/aws-lambda-test-utils

Use in your Tests

import {
  apiGatewayEventMock,
  apiGatewayProxyResultMock,
  contextMock,
} from '@schedulino/aws-lambda-test-utils';

const apiGatewayEvent = apiGatewayEventMock();
const apiGatewayProxyResult = apiGatewayProxyResultMock();
const context = contextMock();