fiftyone.pipeline.cloudrequestengine 4.3.5 → 4.3.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fiftyone.pipeline.cloudrequestengine",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.8",
|
|
4
4
|
"description": "Cloud request engine for the 51Degrees Pipeline API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"jest": "^27.0.6"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"fiftyone.pipeline.core": "^4.3.
|
|
24
|
-
"fiftyone.pipeline.engines": "^4.3.
|
|
23
|
+
"fiftyone.pipeline.core": "^4.3.8",
|
|
24
|
+
"fiftyone.pipeline.engines": "^4.3.8"
|
|
25
25
|
},
|
|
26
26
|
"contributors": [
|
|
27
27
|
"Filip Hnízdo <filip@octophin.com> (https://octophindigital.com/)",
|
|
@@ -64,7 +64,7 @@ test('missing property service - invalid resource key', done => {
|
|
|
64
64
|
var errorFound = false;
|
|
65
65
|
error = flowData.errors.CloudEngineBase[0];
|
|
66
66
|
errorFound = error.message.includes(testResourceKey) &&
|
|
67
|
-
error.message.includes('not a valid
|
|
67
|
+
error.message.includes('is not a valid Resource Key');
|
|
68
68
|
expect(errorFound).toBe(true);
|
|
69
69
|
|
|
70
70
|
done();
|
|
@@ -89,7 +89,7 @@ test('HTTP data set in error', done => {
|
|
|
89
89
|
const builder = new PipelineBuilder();
|
|
90
90
|
const pipeline = builder.add(engine).build();
|
|
91
91
|
const flowData = pipeline.createFlowData();
|
|
92
|
-
let expectedError = '\'' + testResourceKey + '\' is not a valid
|
|
92
|
+
let expectedError = '\'' + testResourceKey + '\' is not a valid Resource Key.';
|
|
93
93
|
|
|
94
94
|
// When an error occurs, check that the message is logged.
|
|
95
95
|
pipeline.on('error', (e) => {
|