Pass through empty constructor names

This commit is contained in:
Kevin Sawicki 2016-07-06 09:18:12 -07:00
parent a1209b69b3
commit d67dfd09fd
3 changed files with 5 additions and 4 deletions

View file

@ -34,7 +34,8 @@ describe('ipc module', function () {
assert.equal(a.foo.bar, 'baz')
assert.equal(a.foo.baz, false)
assert.equal(a.bar, 1234)
assert.equal(a.baz(Object.create(null)), 'hello')
assert.equal(a.getConstructorName(Object.create(null)), 'Object')
assert.equal(a.getConstructorName(new (class {})), '')
})
it('should search module from the user app', function () {