avoid using eslint comment exceptions

This commit is contained in:
Zeke Sikelianos 2016-03-30 14:06:50 -07:00 committed by Kevin Sawicki
parent 1a18151eff
commit b5afad9da7
5 changed files with 10 additions and 13 deletions

View file

@ -60,7 +60,7 @@ describe('ipc module', function () {
it('can construct an object from its member', function () {
var call = remote.require(path.join(fixtures, 'module', 'call.js'))
var obj = new call.constructor // eslint-disable-line
var obj = new call.constructor()
assert.equal(obj.test, 'test')
})