Add missing semicolon

This commit is contained in:
Kevin Sawicki 2016-02-09 13:55:49 -08:00
parent da6ebac742
commit 9609b36b3c

View 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.');
});
});