This commit is contained in:
Samuel Attard 2016-10-13 12:47:43 +11:00
Родитель a9d5699a52
Коммит eac5ba4c56
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -45,7 +45,7 @@ describe('ipc module', function () {
assert.equal(a.bar, 1234)
assert.equal(a.anonymous.constructor.name, '')
assert.equal(a.getConstructorName(Object.create(null)), '')
assert.equal(a.getConstructorName(new (class {})), '')
assert.equal(a.getConstructorName(new (class {})()), '')
})
it('should search module from the user app', function () {

2
spec/fixtures/module/no-prototype.js поставляемый
Просмотреть файл

@ -4,7 +4,7 @@ foo.baz = false
module.exports = {
foo: foo,
bar: 1234,
anonymous: new (class {}),
anonymous: new (class {})(),
getConstructorName: function (value) {
return value.constructor.name
}