Unit Test and Integration Test for AWS Lambda/NodeJS in TypeScript | by Zijing Zhao | Level Up Coding

PHOTO EMBED

Mon Jan 31 2022 05:37:18 GMT+0000 (Coordinated Universal Time)

Saved by @jrsl

module.exports = {
  clearMocks: false,
  collectCoverage: true,
  coverageDirectory: "coverage",
  coverageProvider: "v8",

  testEnvironment: "node",
  testMatch: [
    "**/unit/**/*.test.ts"
  ],
};
content_copyCOPY

https://levelup.gitconnected.com/unit-test-and-integration-test-for-aws-lambda-nodejs-in-typescript-2235a0f69f5