We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04cd3ca commit 547a10dCopy full SHA for 547a10d
1 file changed
test/all.js
@@ -24,6 +24,7 @@ describe('node aws lambda module', function() {
24
handler: 'helloworld.handler',
25
role: 'arn:aws:iam:xxxxxx:rol/lambda-exec-role',
26
functionName: 'helloworld',
27
+ description: 'helloworld description',
28
timeout: 10,
29
memorySize: 128,
30
eventSource: {
@@ -54,6 +55,7 @@ describe('node aws lambda module', function() {
54
55
function(data, callback) {
56
expect(data.Configuration).to.deep.equal({
57
FunctionName: 'helloworld',
58
+ Description: 'helloworld description',
59
Handler: 'helloworld.handler',
60
Role: 'arn:aws:iam:xxxxxx:rol/lambda-exec-role',
61
Timeout: 10,
@@ -99,6 +101,7 @@ describe('node aws lambda module', function() {
99
101
100
102
103
104
105
106
107
Timeout: 20,
0 commit comments