@shelf/jest-dynamodb
Version:
Run your tests using Jest & DynamoDB local
25 lines (22 loc) • 607 B
JavaScript
;
var _jestEnvironmentNode = require("jest-environment-node");
/* eslint-disable no-console */
const debug = require('debug')('jest-dynamodb');
module.exports = class DynamoDBEnvironment extends _jestEnvironmentNode.TestEnvironment {
constructor(config, context) {
super(config, context);
}
async setup() {
debug('Setup DynamoDB Test Environment');
await super.setup();
}
async teardown() {
debug('Teardown DynamoDB Test Environment');
await super.teardown();
}
// @ts-ignore
runScript(script) {
// @ts-ignore
return super.runScript(script);
}
};