Browse Source

Use const and remove extra returns

Kevin Sawicki 9 years ago
parent
commit
fb3ab9e1f1
1 changed files with 5 additions and 8 deletions
  1. 5 8
      spec/api-desktop-capturer-spec.js

+ 5 - 8
spec/api-desktop-capturer-spec.js

@@ -1,17 +1,14 @@
-var assert, desktopCapturer;
-
-assert = require('assert');
-
-desktopCapturer = require('electron').desktopCapturer;
+const assert = require('assert');
+const desktopCapturer = require('electron').desktopCapturer;
 
 describe('desktopCapturer', function() {
-  return it('should return a non-empty array of sources', function(done) {
-    return desktopCapturer.getSources({
+  it('should return a non-empty array of sources', function(done) {
+    desktopCapturer.getSources({
       types: ['window', 'screen']
     }, function(error, sources) {
       assert.equal(error, null);
       assert.notEqual(sources.length, 0);
-      return done();
+      done();
     });
   });
 });