qcobjects 2.4.32-beta → 2.4.38

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.32-beta
1
+ 2.4.38
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects",
3
- "version": "2.4.32-beta",
3
+ "version": "2.4.38",
4
4
  "description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
5
5
  "main": "QCObjects.js",
6
6
  "license": "LGPL-3.0",
@@ -11,14 +11,14 @@ describe("Global Features Spec", function () {
11
11
  var classFactory = Class ("MyClass", {});
12
12
 
13
13
  expect(ClassFactory("MyClass")).toBe( classFactory );
14
- logger.debug("Existence of global.ClassesList Spec... OK");
14
+ logger.debug("Class Factory using Class Function, no parent class Spec... OK");
15
15
  });
16
16
 
17
17
  it("Global Class Factory using Class Function, no parent class Spec", function () {
18
18
  var classFactory = Class ("MyClass", {});
19
19
 
20
20
  expect(global.MyClass).toBe( classFactory );
21
- logger.debug("Existence of global.ClassesList Spec... OK");
21
+ logger.debug("Global Class Factory using Class Function, no parent class Spec... OK");
22
22
  });
23
23
 
24
24
  it("Class Factory inside a package, no parent class Spec", function () {
@@ -34,7 +34,7 @@ describe("Global Features Spec", function () {
34
34
  }
35
35
 
36
36
  expect(ClassFactory("MyClass")).toBe( classFactory );
37
- logger.debug("Existence of global.ClassesList Spec... OK");
37
+ logger.debug("Class Factory inside a package, no parent class Spec... OK");
38
38
  });
39
39
 
40
40
  });