teraslice-client-js 2.3.1 → 2.3.3

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,7 +1,7 @@
1
1
  {
2
2
  "name": "teraslice-client-js",
3
3
  "displayName": "Teraslice Client (JavaScript)",
4
- "version": "2.3.1",
4
+ "version": "2.3.3",
5
5
  "description": "A Node.js client for teraslice jobs, assets, and cluster references.",
6
6
  "keywords": [
7
7
  "elasticsearch",
@@ -27,8 +27,8 @@
27
27
  "dependencies": {
28
28
  "auto-bind": "~5.0.1",
29
29
  "got": "~14.6.6",
30
- "@terascope/core-utils": "~2.3.1",
31
- "@terascope/types": "~2.3.0"
30
+ "@terascope/core-utils": "~2.3.3",
31
+ "@terascope/types": "~2.3.2"
32
32
  },
33
33
  "devDependencies": {
34
34
  "nock": "~14.0.11"
@@ -69,11 +69,7 @@ describe('Teraslice Assets', () => {
69
69
  });
70
70
  });
71
71
 
72
- // This test hangs in node version 20.10.0 and above.
73
- // See issue: https://github.com/nock/nock/issues/2595
74
- // teraslice/e2e/test/cases/assets/simple-spec.ts covers this test case
75
- // eslint-disable-next-line jest/no-disabled-tests
76
- describe.skip('when called with a stream', () => {
72
+ describe('when called with a stream', () => {
77
73
  const testFilePath = path.join(dirname, 'fixtures', 'test.txt');
78
74
  const contents = fs.readFileSync(testFilePath, 'utf-8');
79
75
  const idResponse: AssetIDResponse = { asset_id: 'some-asset-id' };