Pass through empty constructor names
This commit is contained in:
parent
a1209b69b3
commit
d67dfd09fd
3 changed files with 5 additions and 4 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue