Skip to content

Commit 96ec3d0

Browse files
authored
chore(deps-dev): bump cucumber to v1.3.3 (#1070)
1 parent 3cbdb37 commit 96ec3d0

File tree

71 files changed

+363
-968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+363
-968
lines changed

features/acm/step_definitions/acm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { ACM } = require("../../../clients/client-acm");
22

33
module.exports = function() {
4-
this.Before("@acm", function(callback) {
4+
this.Before({ tags: ["@acm"] }, function(scenario, callback) {
55
this.service = new ACM({});
66
callback();
77
});

features/apigateway/step_definitions/apigateway.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { APIGateway } = require("../../../clients/client-api-gateway");
22

33
module.exports = function() {
4-
this.Before("@apigateway", function(callback) {
4+
this.Before({ tags: ["@apigateway"] }, function(scenario, callback) {
55
this.service = new APIGateway({});
66
callback();
77
});

features/autoscaling/step_definitions/autoscaling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { AutoScaling } = require("../../../clients/client-auto-scaling");
22

33
module.exports = function() {
4-
this.Before("@autoscaling", function(callback) {
4+
this.Before({ tags: ["@autoscaling"] }, function(scenario, callback) {
55
this.service = new AutoScaling({ region: "us-east-1" });
66
callback();
77
});

features/cloudformation/step_definitions/cloudformation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudFormation } = require("../../../clients/client-cloudformation");
22

33
module.exports = function() {
4-
this.Before("@cloudformation", function(callback) {
4+
this.Before({ tags: ["@cloudformation"] }, function(scenario, callback) {
55
this.service = new CloudFormation({});
66
callback();
77
});

features/cloudfront/step_definitions/cloudfront-latest.js

Lines changed: 0 additions & 60 deletions
This file was deleted.

features/cloudfront/step_definitions/cloudfront.js

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,63 @@
1+
var { CloudFront } = require("../../../clients/client-cloudfront");
2+
13
module.exports = function() {
4+
var createParams = {
5+
CallerReference: "",
6+
Aliases: {
7+
Quantity: 0
8+
},
9+
DefaultRootObject: "",
10+
Origins: {
11+
Items: [
12+
{
13+
Id: "origin",
14+
DomainName: "example.com",
15+
CustomOriginConfig: {
16+
HTTPPort: 80,
17+
HTTPSPort: 443,
18+
OriginProtocolPolicy: "match-viewer"
19+
}
20+
}
21+
],
22+
Quantity: 1
23+
},
24+
DefaultCacheBehavior: {
25+
TargetOriginId: "origin",
26+
ForwardedValues: {
27+
QueryString: false,
28+
Cookies: {
29+
Forward: "all"
30+
}
31+
},
32+
TrustedSigners: {
33+
Items: [],
34+
Enabled: false,
35+
Quantity: 0
36+
},
37+
ViewerProtocolPolicy: "allow-all",
38+
MinTTL: 0
39+
},
40+
CacheBehaviors: {
41+
Items: [],
42+
Quantity: 0
43+
},
44+
Comment: "",
45+
Logging: {
46+
Enabled: false,
47+
Bucket: "invalidbucket.s3.amazonaws.com",
48+
Prefix: "prefix",
49+
IncludeCookies: false
50+
},
51+
PriceClass: "PriceClass_All",
52+
Enabled: false
53+
};
54+
55+
this.Before({ tags: ["@cloudfront"] }, function(scenario, callback) {
56+
this.service = new CloudFront({});
57+
this.cfCreateParams = createParams;
58+
callback();
59+
});
60+
261
this.Given(
362
/^I create a CloudFront distribution with name prefix "([^"]*)"$/,
463
function(prefix, callback) {

features/cloudsearch/step_definitions/cloudsearch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudSearch } = require("../../../clients/client-cloudsearch");
22

33
module.exports = function() {
4-
this.Before("@cloudsearch", function(callback) {
4+
this.Before({ tags: ["@cloudsearch"] }, function(scenario, callback) {
55
this.service = new CloudSearch({});
66
callback();
77
});

features/cloudtrail/step_definitions/cloudtrail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudTrail } = require("../../../clients/client-cloudtrail");
22

33
module.exports = function() {
4-
this.Before("@cloudtrail", function(callback) {
4+
this.Before({ tags: ["@cloudtrail"] }, function(scenario, callback) {
55
this.service = new CloudTrail({});
66
callback();
77
});

features/cloudwatch/step_definitions/cloudwatch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudWatch } = require("../../../clients/client-cloudwatch");
22

33
module.exports = function() {
4-
this.Before("@cloudwatch", function(callback) {
4+
this.Before({ tags: ["@cloudwatch"] }, function(scenario, callback) {
55
this.service = new CloudWatch({});
66
callback();
77
});

features/cloudwatchevents/step_definitions/cloudwatchevents.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudWatchEvents } = require("../../../clients/client-cloudwatch-events");
22

33
module.exports = function() {
4-
this.Before("@cloudwatchevents", function(callback) {
4+
this.Before({ tags: ["@cloudwatchevents"] }, function(scenario, callback) {
55
this.service = new CloudWatchEvents({});
66
callback();
77
});

features/cloudwatchlogs/step_definitions/cloudwatchlogs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CloudWatchLogs } = require("../../../clients/client-cloudwatch-logs");
22

33
module.exports = function() {
4-
this.Before("@cloudwatchlogs", function(callback) {
4+
this.Before({ tags: ["@cloudwatchlogs"] }, function(scenario, callback) {
55
this.service = new CloudWatchLogs({});
66
callback();
77
});

features/codecommit/step_definitions/codecommit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CodeCommit } = require("../../../clients/client-codecommit");
22

33
module.exports = function() {
4-
this.Before("@codecommit", function(callback) {
4+
this.Before({ tags: ["@codecommit"] }, function(scenario, callback) {
55
this.service = new CodeCommit({ region: "us-east-1" });
66
callback();
77
});

features/codedeploy/step_definitions/codedeploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CodeDeploy } = require("../../../clients/client-codedeploy");
22

33
module.exports = function() {
4-
this.Before("@codedeploy", function(callback) {
4+
this.Before({ tags: ["@codedeploy"] }, function(scenario, callback) {
55
this.service = new CodeDeploy({});
66
callback();
77
});

features/codepipeline/step_definitions/codepipeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CodePipeline } = require("../../../clients/client-codepipeline");
22

33
module.exports = function() {
4-
this.Before("@codepipeline", function(callback) {
4+
this.Before({ tags: ["@codepipeline"] }, function(scenario, callback) {
55
this.service = new CodePipeline({ region: "us-east-1" });
66
callback();
77
});

features/cognitoidentity/step_definitions/cognitoidentity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CognitoIdentity } = require("../../../clients/client-cognito-identity");
22

33
module.exports = function() {
4-
this.Before("@cognitoidentity", function(callback) {
4+
this.Before({ tags: ["@cognitoidentity"] }, function(scenario, callback) {
55
this.service = new CognitoIdentity({});
66
callback();
77
});

features/cognitosync/step_definitions/cognitosync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { CognitoSync } = require("../../../clients/client-cognito-sync");
22

33
module.exports = function() {
4-
this.Before("@cognitosync", function(callback) {
4+
this.Before({ tags: ["@cognitosync"] }, function(scenario, callback) {
55
this.service = new CognitoSync({});
66
callback();
77
});

features/configservice/step_definitions/configservice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { ConfigService } = require("../../../clients/client-config-service");
22

33
module.exports = function() {
4-
this.Before("@configservice", function(callback) {
4+
this.Before({ tags: ["@configservice"] }, function(scenario, callback) {
55
this.service = new ConfigService({});
66
callback();
77
});

features/datapipeline/step_definitions/datapipeline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { DataPipeline } = require("../../../clients/client-data-pipeline");
22

33
module.exports = function() {
4-
this.Before("@datapipeline", function(callback) {
4+
this.Before({ tags: ["@datapipeline"] }, function(scenario, callback) {
55
this.service = new DataPipeline({});
66
callback();
77
});

features/devicefarm/step_definitions/devicefarm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { DeviceFarm } = require("../../../clients/client-device-farm");
22

33
module.exports = function() {
4-
this.Before("@devicefarm", function(callback) {
4+
this.Before({ tags: ["@devicefarm"] }, function(scenario, callback) {
55
this.service = new DeviceFarm({ region: "us-west-2" });
66
callback();
77
});

features/directconnect/step_definitions/directconnect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { DirectConnect } = require("../../../clients/client-direct-connect");
22

33
module.exports = function() {
4-
this.Before("@directconnect", function(callback) {
4+
this.Before({ tags: ["@directconnect"] }, function(scenario, callback) {
55
this.service = new DirectConnect({});
66
callback();
77
});

features/directoryservice/step_definitions/directoryservice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var { DirectoryService } = require("../../../clients/client-directory-service");
22

33
module.exports = function() {
4-
this.Before("@directoryservice", function(callback) {
4+
this.Before({ tags: ["@directoryservice"] }, function(scenario, callback) {
55
this.service = new DirectoryService({});
66
callback();
77
});

features/dms/step_definitions/dms.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var {
33
} = require("../../../clients/client-database-migration-service");
44

55
module.exports = function() {
6-
this.Before("@dms", function(callback) {
6+
this.Before({ tags: ["@dms"] }, function(scenario, callback) {
77
this.service = new DatabaseMigrationService({});
88
callback();
99
});

features/dynamodb/crc32.feature

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)