Add asserts for properties
authorKevin Sawicki <kevinsawicki@gmail.com>
Fri, 27 May 2016 17:52:56 +0000 (10:52 -0700)
committerKevin Sawicki <kevinsawicki@gmail.com>
Fri, 27 May 2016 17:52:56 +0000 (10:52 -0700)
spec/api-ipc-spec.js
spec/fixtures/module/no-prototype.js

index 41cc248..22c2edd 100644 (file)
@@ -32,9 +32,10 @@ describe('ipc module', function () {
       assert.equal(a.id, 1127)
     })
 
-    it('should work when object has no prototype', function () {
+    it.only('should work when object has no prototype', function () {
       var a = remote.require(path.join(fixtures, 'module', 'no-prototype.js'))
-      assert.deepEqual(a.foo, {})
+      assert.equal(a.foo.bar, 'baz')
+      assert.equal(a.foo.baz, false)
       assert.equal(a.bar, 1234)
     })
 
index b6c9d7a..f298925 100644 (file)
@@ -1,4 +1,4 @@
-module.exports = {
-  foo: Object.create(null),
-  bar: 1234
-}
+const foo = Object.create(null)
+foo.bar = 'baz'
+foo.baz = false
+module.exports = {foo: foo, bar: 1234}