Add missing semicolons

This commit is contained in:
Kevin Sawicki 2016-01-20 09:48:25 -07:00
parent b5cf352312
commit 669b815758

View file

@ -19,9 +19,9 @@ describe('desktopCapturer', function() {
assert.equal(error, null);
assert.notEqual(sources.length, 0);
if (callCount === 2) done();
}
};
desktopCapturer.getSources({types: ['window', 'screen']}, callback);
desktopCapturer.getSources({types: ['window', 'screen']}, callback);
})
});
});