@verii/data-loader 1.1.0-pre.1762210020 → 1.1.0-pre.1762226211

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": "@verii/data-loader",
3
- "version": "1.1.0-pre.1762210020",
3
+ "version": "1.1.0-pre.1762226211",
4
4
  "description": "A tool for uploading data to the different target systems.",
5
5
  "repository": "https://github.com/LFDT-Verii/core",
6
6
  "main": "src/index.js",
@@ -26,7 +26,7 @@
26
26
  "eslint-plugin-import": "2.32.0",
27
27
  "eslint-plugin-prettier": "4.2.5",
28
28
  "eslint-watch": "7.0.0",
29
- "expect": "29.7.0",
29
+ "expect": "30.2.0",
30
30
  "nock": "15.0.0-beta.6",
31
31
  "prettier": "2.8.8"
32
32
  },
@@ -42,5 +42,5 @@
42
42
  "nanoid": "5.1.6",
43
43
  "strip-bom-stream": "^4.0.0"
44
44
  },
45
- "gitHead": "ab4413b1c7592b95c0181c8887dc57cc9dac80b7"
45
+ "gitHead": "6e4c5676ee15f63de7c26c808b08f60e9e3e4edb"
46
46
  }
@@ -34,7 +34,7 @@ describe('batch issuing test', () => {
34
34
  dryrun: true,
35
35
  };
36
36
 
37
- await expect(() => runBatchIssuing(options)).rejects.toThrowError(
37
+ await expect(() => runBatchIssuing(options)).rejects.toThrow(
38
38
  "Mug2.1 doesn't exist. Please use one of EmailV1.0,PhoneV1.0,DriversLicenseV1.0"
39
39
  );
40
40
  });
@@ -51,7 +51,7 @@ describe('batch issuing test', () => {
51
51
  dryrun: true,
52
52
  };
53
53
 
54
- await expect(() => runBatchIssuing(options)).rejects.toThrowError(
54
+ await expect(() => runBatchIssuing(options)).rejects.toThrow(
55
55
  'one of "--tenant" or "--did" is required'
56
56
  );
57
57
  });
@@ -1325,7 +1325,7 @@ describe('batch issuing test', () => {
1325
1325
  authToken: 'fakeToken',
1326
1326
  };
1327
1327
 
1328
- await expect(() => runBatchIssuing(options)).rejects.toThrowError();
1328
+ await expect(() => runBatchIssuing(options)).rejects.toThrow();
1329
1329
  });
1330
1330
 
1331
1331
  it("should find the existing disclosure disclosureRequest with 'tenant' option", async () => {