Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump cucumber to v1.3.3 #1070

Merged
merged 19 commits into from
Apr 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/acm/step_definitions/acm.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { ACM } = require("../../../clients/client-acm");

module.exports = function() {
this.Before("@acm", function(callback) {
this.Before({ tags: ["@acm"] }, function(scenario, callback) {
this.service = new ACM({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/apigateway/step_definitions/apigateway.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { APIGateway } = require("../../../clients/client-api-gateway");

module.exports = function() {
this.Before("@apigateway", function(callback) {
this.Before({ tags: ["@apigateway"] }, function(scenario, callback) {
this.service = new APIGateway({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/autoscaling/step_definitions/autoscaling.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { AutoScaling } = require("../../../clients/client-auto-scaling");

module.exports = function() {
this.Before("@autoscaling", function(callback) {
this.Before({ tags: ["@autoscaling"] }, function(scenario, callback) {
this.service = new AutoScaling({ region: "us-east-1" });
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/cloudformation/step_definitions/cloudformation.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudFormation } = require("../../../clients/client-cloudformation");

module.exports = function() {
this.Before("@cloudformation", function(callback) {
this.Before({ tags: ["@cloudformation"] }, function(scenario, callback) {
this.service = new CloudFormation({});
callback();
});
Expand Down
60 changes: 0 additions & 60 deletions features/cloudfront/step_definitions/cloudfront-latest.js

This file was deleted.

59 changes: 59 additions & 0 deletions features/cloudfront/step_definitions/cloudfront.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,63 @@
var { CloudFront } = require("../../../clients/client-cloudfront");

module.exports = function() {
var createParams = {
CallerReference: "",
Aliases: {
Quantity: 0
},
DefaultRootObject: "",
Origins: {
Items: [
{
Id: "origin",
DomainName: "example.com",
CustomOriginConfig: {
HTTPPort: 80,
HTTPSPort: 443,
OriginProtocolPolicy: "match-viewer"
}
}
],
Quantity: 1
},
DefaultCacheBehavior: {
TargetOriginId: "origin",
ForwardedValues: {
QueryString: false,
Cookies: {
Forward: "all"
}
},
TrustedSigners: {
Items: [],
Enabled: false,
Quantity: 0
},
ViewerProtocolPolicy: "allow-all",
MinTTL: 0
},
CacheBehaviors: {
Items: [],
Quantity: 0
},
Comment: "",
Logging: {
Enabled: false,
Bucket: "invalidbucket.s3.amazonaws.com",
Prefix: "prefix",
IncludeCookies: false
},
PriceClass: "PriceClass_All",
Enabled: false
};

this.Before({ tags: ["@cloudfront"] }, function(scenario, callback) {
this.service = new CloudFront({});
this.cfCreateParams = createParams;
callback();
});

this.Given(
/^I create a CloudFront distribution with name prefix "([^"]*)"$/,
function(prefix, callback) {
Expand Down
2 changes: 1 addition & 1 deletion features/cloudsearch/step_definitions/cloudsearch.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudSearch } = require("../../../clients/client-cloudsearch");

module.exports = function() {
this.Before("@cloudsearch", function(callback) {
this.Before({ tags: ["@cloudsearch"] }, function(scenario, callback) {
this.service = new CloudSearch({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/cloudtrail/step_definitions/cloudtrail.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudTrail } = require("../../../clients/client-cloudtrail");

module.exports = function() {
this.Before("@cloudtrail", function(callback) {
this.Before({ tags: ["@cloudtrail"] }, function(scenario, callback) {
this.service = new CloudTrail({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/cloudwatch/step_definitions/cloudwatch.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudWatch } = require("../../../clients/client-cloudwatch");

module.exports = function() {
this.Before("@cloudwatch", function(callback) {
this.Before({ tags: ["@cloudwatch"] }, function(scenario, callback) {
this.service = new CloudWatch({});
callback();
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudWatchEvents } = require("../../../clients/client-cloudwatch-events");

module.exports = function() {
this.Before("@cloudwatchevents", function(callback) {
this.Before({ tags: ["@cloudwatchevents"] }, function(scenario, callback) {
this.service = new CloudWatchEvents({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/cloudwatchlogs/step_definitions/cloudwatchlogs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CloudWatchLogs } = require("../../../clients/client-cloudwatch-logs");

module.exports = function() {
this.Before("@cloudwatchlogs", function(callback) {
this.Before({ tags: ["@cloudwatchlogs"] }, function(scenario, callback) {
this.service = new CloudWatchLogs({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/codecommit/step_definitions/codecommit.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CodeCommit } = require("../../../clients/client-codecommit");

module.exports = function() {
this.Before("@codecommit", function(callback) {
this.Before({ tags: ["@codecommit"] }, function(scenario, callback) {
this.service = new CodeCommit({ region: "us-east-1" });
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/codedeploy/step_definitions/codedeploy.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CodeDeploy } = require("../../../clients/client-codedeploy");

module.exports = function() {
this.Before("@codedeploy", function(callback) {
this.Before({ tags: ["@codedeploy"] }, function(scenario, callback) {
this.service = new CodeDeploy({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/codepipeline/step_definitions/codepipeline.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CodePipeline } = require("../../../clients/client-codepipeline");

module.exports = function() {
this.Before("@codepipeline", function(callback) {
this.Before({ tags: ["@codepipeline"] }, function(scenario, callback) {
this.service = new CodePipeline({ region: "us-east-1" });
callback();
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CognitoIdentity } = require("../../../clients/client-cognito-identity");

module.exports = function() {
this.Before("@cognitoidentity", function(callback) {
this.Before({ tags: ["@cognitoidentity"] }, function(scenario, callback) {
this.service = new CognitoIdentity({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/cognitosync/step_definitions/cognitosync.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { CognitoSync } = require("../../../clients/client-cognito-sync");

module.exports = function() {
this.Before("@cognitosync", function(callback) {
this.Before({ tags: ["@cognitosync"] }, function(scenario, callback) {
this.service = new CognitoSync({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/configservice/step_definitions/configservice.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { ConfigService } = require("../../../clients/client-config-service");

module.exports = function() {
this.Before("@configservice", function(callback) {
this.Before({ tags: ["@configservice"] }, function(scenario, callback) {
this.service = new ConfigService({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/datapipeline/step_definitions/datapipeline.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { DataPipeline } = require("../../../clients/client-data-pipeline");

module.exports = function() {
this.Before("@datapipeline", function(callback) {
this.Before({ tags: ["@datapipeline"] }, function(scenario, callback) {
this.service = new DataPipeline({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/devicefarm/step_definitions/devicefarm.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { DeviceFarm } = require("../../../clients/client-device-farm");

module.exports = function() {
this.Before("@devicefarm", function(callback) {
this.Before({ tags: ["@devicefarm"] }, function(scenario, callback) {
this.service = new DeviceFarm({ region: "us-west-2" });
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/directconnect/step_definitions/directconnect.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { DirectConnect } = require("../../../clients/client-direct-connect");

module.exports = function() {
this.Before("@directconnect", function(callback) {
this.Before({ tags: ["@directconnect"] }, function(scenario, callback) {
this.service = new DirectConnect({});
callback();
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var { DirectoryService } = require("../../../clients/client-directory-service");

module.exports = function() {
this.Before("@directoryservice", function(callback) {
this.Before({ tags: ["@directoryservice"] }, function(scenario, callback) {
this.service = new DirectoryService({});
callback();
});
Expand Down
2 changes: 1 addition & 1 deletion features/dms/step_definitions/dms.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var {
} = require("../../../clients/client-database-migration-service");

module.exports = function() {
this.Before("@dms", function(callback) {
this.Before({ tags: ["@dms"] }, function(scenario, callback) {
this.service = new DatabaseMigrationService({});
callback();
});
Expand Down
19 changes: 0 additions & 19 deletions features/dynamodb/crc32.feature

This file was deleted.