sls-jest
Search
⌃
K
Getting Started
Core Concepts
AWS Credentials
Matchers
DynamoDB
S3
AppSync
EventBridge
Spies
Setup
EventBridge
Utilities
DynamoDB
Cookbooks
Github Actions
CDK
Powered By
GitBook
Getting Started
Install sls-jest
npm
i sls-jest
Setup Jest
Create a setup file:
// setupJest.ts
import
{
matchers
}
from
'sls-jest'
;
expect
.
extend
(
matchers
);
Then use it in your
jest config file
(
jest.config.ts
) under
setupFilesAfterEnv
:
export
default
{
// ..
setupFilesAfterEnv
:
[
'./setupJest.ts'
];
}
Next
Core Concepts
Last modified
9mo ago