We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd1f21b commit bb1a660Copy full SHA for bb1a660
index.js
@@ -108,14 +108,14 @@ module.exports = function(S) { // Always pass in the ServerlessPlugin Class
108
*/
109
110
remove() {
111
- //return dynamodb.remove();
112
- return dynamodbLocal.remove(function(){});
+ return new BbPromise(function(resolve, reject) {
+ dynamodbLocal.remove(resolve);
113
+ });
114
}
115
116
install() {
117
- return dynamodbLocal.install(function(){
118
-
+ dynamodbLocal.install(resolve);
119
});
120
121
0 commit comments