@itentialopensource/adapter-iap 0.12.4 → 1.0.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/CHANGELOG.md +8 -0
- package/package.json +7 -7
- package/report/adapterInfo.json +4 -4
- package/test/unit/adapterTestUnit.js +3 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-iap",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "This adapter integrates with system described as: iap.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Itential Automation Platform",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"lint:errors": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js --quiet",
|
|
15
15
|
"test:baseunit": "mocha test/unit/adapterBaseTestUnit.js --LOG=error",
|
|
16
16
|
"test:unit": "mocha test/unit/adapterTestUnit.js --LOG=error",
|
|
17
|
-
"test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error",
|
|
17
|
+
"test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error --no-forbid-only",
|
|
18
18
|
"test": "npm run test:baseunit && npm run test:unit && npm run test:integration",
|
|
19
19
|
"adapter:checkMigrate": "node utils/checkMigrate.js",
|
|
20
20
|
"adapter:findPath": "node utils/findPath.js",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
],
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": "
|
|
41
|
-
"npm": "
|
|
40
|
+
"node": "20.19.0",
|
|
41
|
+
"npm": "10.8.2"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"author": "Itential",
|
|
48
48
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-iap#readme",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@itentialopensource/adapter-utils": "6.1.
|
|
50
|
+
"@itentialopensource/adapter-utils": "6.1.17",
|
|
51
51
|
"acorn": "8.14.1",
|
|
52
52
|
"ajv": "8.18.0",
|
|
53
|
-
"axios": "1.
|
|
53
|
+
"axios": "1.15.0",
|
|
54
54
|
"commander": "11.1.0",
|
|
55
55
|
"fs-extra": "11.3.4",
|
|
56
56
|
"json-query": "2.2.2",
|
|
57
|
-
"mocha": "
|
|
57
|
+
"mocha": "12.0.0-beta-10",
|
|
58
58
|
"mocha-param": "2.0.1",
|
|
59
59
|
"mongodb": "4.17.2",
|
|
60
60
|
"ping": "0.4.4",
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
3
|
-
"configLines":
|
|
4
|
-
"scriptLines":
|
|
2
|
+
"version": "0.12.4",
|
|
3
|
+
"configLines": 44162,
|
|
4
|
+
"scriptLines": 2523,
|
|
5
5
|
"codeLines": 47472,
|
|
6
6
|
"testLines": 34936,
|
|
7
7
|
"testCases": 1852,
|
|
8
|
-
"totalCodeLines":
|
|
8
|
+
"totalCodeLines": 84931,
|
|
9
9
|
"wfTasks": 585
|
|
10
10
|
}
|
|
@@ -250,7 +250,7 @@ describe('[unit] Iap Adapter Test', () => {
|
|
|
250
250
|
assert.equal('node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js --quiet', packageDotJson.scripts['lint:errors']);
|
|
251
251
|
assert.equal('mocha test/unit/adapterBaseTestUnit.js --LOG=error', packageDotJson.scripts['test:baseunit']);
|
|
252
252
|
assert.equal('mocha test/unit/adapterTestUnit.js --LOG=error', packageDotJson.scripts['test:unit']);
|
|
253
|
-
assert.equal('mocha test/integration/adapterTestIntegration.js --LOG=error', packageDotJson.scripts['test:integration']);
|
|
253
|
+
assert.equal('mocha test/integration/adapterTestIntegration.js --LOG=error --no-forbid-only', packageDotJson.scripts['test:integration']);
|
|
254
254
|
assert.equal('npm run test:baseunit && npm run test:unit && npm run test:integration', packageDotJson.scripts.test);
|
|
255
255
|
done();
|
|
256
256
|
} catch (error) {
|
|
@@ -280,10 +280,10 @@ describe('[unit] Iap Adapter Test', () => {
|
|
|
280
280
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
281
281
|
assert.notEqual('', packageDotJson.dependencies);
|
|
282
282
|
assert.equal('8.18.0', packageDotJson.dependencies.ajv);
|
|
283
|
-
assert.equal('1.
|
|
283
|
+
assert.equal('1.15.0', packageDotJson.dependencies.axios);
|
|
284
284
|
assert.equal('11.1.0', packageDotJson.dependencies.commander);
|
|
285
285
|
assert.equal('11.3.4', packageDotJson.dependencies['fs-extra']);
|
|
286
|
-
assert.equal('
|
|
286
|
+
assert.equal('12.0.0-beta-10', packageDotJson.dependencies.mocha);
|
|
287
287
|
assert.equal('2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
288
288
|
assert.equal('0.4.4', packageDotJson.dependencies.ping);
|
|
289
289
|
assert.equal('1.4.10', packageDotJson.dependencies['readline-sync']);
|