We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 825d79d commit e4cf186Copy full SHA for e4cf186
test/index.test.js
@@ -1,4 +1,4 @@
1
-var AWS = require('aws-sdk')
+var AWS = require('aws-sdk');
2
var test = require('tape');
3
var Dyno = require('..');
4
@@ -12,8 +12,8 @@ test('[index] invalid config', function(assert) {
12
}, /region is required/, 'rejects config without region when awsConfig not set');
13
14
assert.doesNotThrow(function() {
15
- Dyno({ table: 'my-table', awsConfig: new AWS.Config() })
16
- }, 'accepts config without region when awsConfig is set')
+ Dyno({ table: 'my-table', awsConfig: new AWS.Config() });
+ }, 'accepts config without region when awsConfig is set');
17
assert.end();
18
});
19
0 commit comments