jest-dynamodb icon indicating copy to clipboard operation
jest-dynamodb copied to clipboard

Jest preset for DynamoDB local server

Results 49 jest-dynamodb issues
Sort by recently updated
recently updated
newest added

Sorry this bug report is incomplete, I'm just filing what I have now until I can look into it later. After updating from 3.2.0 to 3.3.0 I get the following...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@aws-sdk/client-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.113.0` -> `3.188.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.113.0/3.188.0) |...

dependencies
backend

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`28.1.6` -> `28.1.8`](https://renovatebot.com/diffs/npm/@types%2fjest/28.1.6/28.1.8) |...

dependencies
backend

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@types/cwd](https://togithub.com/DefinitelyTyped/DefinitelyTyped) | devDependencies | pin | [`^0.10.0` -> `0.10.0`](https://renovatebot.com/diffs/npm/@types%2fcwd/0.10.0/0.10.0) | Add...

dependencies
backend

I'm trying to move a load of Lambda functions to MJS, so I have set the type to "module" in package.json. However, this means the jest-dynamodb-config.js gets interpreted as a...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​shelf/tsconfig | [`0.0.8` -> `0.0.9`](https://renovatebot.com/diffs/npm/@shelf%2ftsconfig/0.0.8/0.0.9) | [![age](https://badges.renovateapi.com/packages/npm/@shelf%2ftsconfig/0.0.9/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

dependencies
backend

We use Jenkins to test, build and deploy our code for multiple clients. The jobs run in parallel, so when we write tests which use this library, we encounter an...

In setup, the library checks to see if DynamoDB local is already running and only installs if the dynamodb local is not running and the directory `${os.tmpdir()}/dynamodb-local` is not setup...

I try to upgrade a project to Serverless 3 which uses this code from readme in `jest-dynamodb-config.js`. ```javascript module.exports = async () => { const serverless = new (require('serverless'))(); //...