@cumulus/integration-tests 10.0.0-beta.0 → 10.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/executions.js +2 -2
- package/dist/index.js +7666 -8844
- package/package.json +13 -12
- package/sfnStep.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/integration-tests",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "Integration tests",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cumulus-test": "./bin/cli.js"
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "rm -rf dist && mkdir dist && ../../node_modules/.bin/webpack",
|
|
22
22
|
"build-docs": "../../node_modules/.bin/jsdoc2md --template README.hbs Collections.js Executions.js Granules.js Providers.js Rules.js > README.md",
|
|
23
|
+
"clean": "rm -rf dist",
|
|
23
24
|
"package": "npm run build",
|
|
24
25
|
"test": "../../node_modules/.bin/ava",
|
|
25
26
|
"test:coverage": "../../node_modules/.bin/nyc npm test"
|
|
@@ -27,16 +28,16 @@
|
|
|
27
28
|
"author": "Cumulus Authors",
|
|
28
29
|
"license": "Apache-2.0",
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"@cumulus/api": "10.
|
|
31
|
-
"@cumulus/api-client": "10.
|
|
32
|
-
"@cumulus/aws-client": "10.
|
|
33
|
-
"@cumulus/cmr-client": "10.
|
|
34
|
-
"@cumulus/cmrjs": "10.
|
|
35
|
-
"@cumulus/common": "10.
|
|
36
|
-
"@cumulus/launchpad-auth": "10.
|
|
37
|
-
"@cumulus/logger": "10.
|
|
38
|
-
"@cumulus/message": "10.
|
|
39
|
-
"@cumulus/oauth-client": "10.
|
|
31
|
+
"@cumulus/api": "10.1.0",
|
|
32
|
+
"@cumulus/api-client": "10.1.0",
|
|
33
|
+
"@cumulus/aws-client": "10.1.0",
|
|
34
|
+
"@cumulus/cmr-client": "10.1.0",
|
|
35
|
+
"@cumulus/cmrjs": "10.1.0",
|
|
36
|
+
"@cumulus/common": "10.1.0",
|
|
37
|
+
"@cumulus/launchpad-auth": "10.1.0",
|
|
38
|
+
"@cumulus/logger": "10.1.0",
|
|
39
|
+
"@cumulus/message": "10.1.0",
|
|
40
|
+
"@cumulus/oauth-client": "10.1.0",
|
|
40
41
|
"aws-sdk": "^2.585.0",
|
|
41
42
|
"base-64": "^0.1.0",
|
|
42
43
|
"commander": "^2.15.0",
|
|
@@ -55,5 +56,5 @@
|
|
|
55
56
|
"uuid": "^3.2.1",
|
|
56
57
|
"xml2js": "^0.4.19"
|
|
57
58
|
},
|
|
58
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "765ba4733ec97540e28cd64dac702eea3b96c654"
|
|
59
60
|
}
|
package/sfnStep.js
CHANGED
|
@@ -68,7 +68,7 @@ class SfnStep {
|
|
|
68
68
|
* If there are multiple executions of a step, we currently assume a retry and return
|
|
69
69
|
* either the first passed execution or the last execution if no passing executions exist
|
|
70
70
|
*
|
|
71
|
-
* @param {string} executionArn -
|
|
71
|
+
* @param {string} executionArn - ARN of the workflow execution
|
|
72
72
|
* @param {string} stepName - name of the step
|
|
73
73
|
* @returns {List<Object>} objects containing a schedule event, start event, and complete
|
|
74
74
|
* event if exists for each execution of the step, null if cannot find the step
|
|
@@ -164,7 +164,7 @@ class SfnStep {
|
|
|
164
164
|
/**
|
|
165
165
|
* Get the output payload from the step, if the step succeeds
|
|
166
166
|
*
|
|
167
|
-
* @param {string} workflowExecutionArn -
|
|
167
|
+
* @param {string} workflowExecutionArn - ARN of the workflow execution
|
|
168
168
|
* @param {string} stepName - name of the step
|
|
169
169
|
* @param {string} eventType - expected type of event, should be 'success' or 'failure'
|
|
170
170
|
* @returns {Object} object containing the payload, null if error
|