fable 3.0.10 → 3.0.11

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": "fable",
3
- "version": "3.0.10",
3
+ "version": "3.0.11",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -40,11 +40,11 @@ suite
40
40
  // Instantiate the logger
41
41
  Expect(testFable).to.be.an('object', 'Fable should initialize as an object directly from the require statement.');
42
42
  Expect(testFable).to.have.a.property('log')
43
- .that.is.a('object');
43
+ .that.is.a('object');
44
44
  Expect(testFable).to.have.a.property('settings')
45
- .that.is.a('object');
45
+ .that.is.a('object');
46
46
  Expect(testFable).to.have.a.property('fable')
47
- .that.is.a('object');
47
+ .that.is.a('object');
48
48
  Expect(testFable.settings.Product)
49
49
  .to.equal('ApplicationNameHere')
50
50
  }