From 06c025050ed6f9c63a2c0b459c9a6f7422df7af1 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 25 Jan 2017 10:19:38 -0800 Subject: [PATCH] Fix typo in spec description --- spec/node-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/node-spec.js b/spec/node-spec.js index 92c95214f957..98db1efeb08e 100644 --- a/spec/node-spec.js +++ b/spec/node-spec.js @@ -150,7 +150,7 @@ describe('node feature', function () { }) describe('error thrown in main process node context', function () { - it('gets emitted as an process uncaughtException event', function () { + it('gets emitted as a process uncaughtException event', function () { const error = ipcRenderer.sendSync('handle-uncaught-exception', 'hello') assert.equal(error, 'hello') })