This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Trying to implement field uniqueness as described in: | |
// https://aws.amazon.com/blogs/database/simulating-amazon-dynamodb-unique-constraints-using-transactions/ | |
// Using: | |
// mocha: v10.2.0 | |
// node: v18.18.2 | |
// macOS: Sonoma v14.1 (23B74) | |
import sinon from 'sinon'; // [email protected] |
OlderNewer