queueobj 10.3.0 → 10.4.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.
@@ -18,7 +18,6 @@ class process_all_obj {
18
18
  t.await_item = 0
19
19
  t.any_errors = false
20
20
 
21
-
22
21
  t.continueProcessing = t.continueProcessing.bind(t)
23
22
  }
24
23
 
package/package.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "author": {
3
3
  "name": "Jim Manton"
4
4
  },
5
- "version": "10.3.0",
5
+ "version": "10.4.0",
6
6
  "bundleDependencies": false,
7
7
  "dependencies": {
8
8
  "chai": "^4.3.7",
9
- "colors": "^1.4.0",
9
+ "node-console-colors": "^1.1.4",
10
10
  "diffler": "^2.0.4",
11
11
  "mocha": "^10.2.0"
12
12
  },
package/test/base.js ADDED
@@ -0,0 +1,22 @@
1
+ var assert = require('assert');
2
+
3
+ describe('base', function () {
4
+ let base, bs
5
+
6
+ beforeEach(function () {
7
+ bs = require('../lib/appenders/base.js')
8
+ base = new bs({getParent: ()=>{}})
9
+ })
10
+
11
+ it('base should pass', function () {
12
+ assert(typeof base != 'undefined')
13
+ })
14
+
15
+ it('base.process is a function', function () {
16
+ assert(typeof base.process == 'function')
17
+ })
18
+
19
+ it('base.process_all is a function', function () {
20
+ assert(typeof base.process_all == 'function')
21
+ })
22
+ })
package/test/package.js CHANGED
@@ -6,11 +6,11 @@ const packageMock = {
6
6
  "author": {
7
7
  "name": "Jim Manton"
8
8
  },
9
- "version": "10.3.0",
9
+ "version": "10.4.0",
10
10
  "bundleDependencies": false,
11
11
  "dependencies": {
12
12
  "chai": "^4.3.7",
13
- "colors": "^1.4.0",
13
+ "node-console-colors": "^1.1.4",
14
14
  "diffler": "^2.0.4",
15
15
  "mocha": "^10.2.0"
16
16
  },