Add missing semicolon
authorKevin Sawicki <kevinsawicki@gmail.com>
Tue, 9 Feb 2016 21:55:49 +0000 (13:55 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Thu, 11 Feb 2016 21:28:33 +0000 (13:28 -0800)
spec/webview-spec.js

index eb1427e08553f7a699e480967a1415248b86c0f3..973c1c2403113a24de51316abc54796d0154fc58 100644 (file)
@@ -564,7 +564,7 @@ describe('<webview> tag', function() {
 
     it('throws a custom error when an API method is called before the event is emitted', function() {
       assert.throws(function () {
-        webview.stop()
+        webview.stop();
       }, 'Cannot call stop because the webContents is unavailable. The WebView must be attached to the DOM and the dom-ready event emmitted before this method can be called.');
     });
   });