From d549c747f15c750d94884cefbb497c866ce5133c Mon Sep 17 00:00:00 2001 From: Simon Coen <32054457+Siolto@users.noreply.github.com> Date: Mon, 4 Jul 2022 09:29:29 +0200 Subject: [PATCH] fix: remove typo from error handling (#297) --- client-side-js/injectUI5.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-side-js/injectUI5.js b/client-side-js/injectUI5.js index 1105bf65..25711578 100644 --- a/client-side-js/injectUI5.js +++ b/client-side-js/injectUI5.js @@ -327,7 +327,7 @@ async function clientSide_injectUI5(config, waitForUI5Timeout, browserInstance) window.wdi5.errorHandling = (done, error) => { window.wdi5.Log.error("[browser wdi5] ERR: ", error) - done({ status: 1, messsage: error.toString() }) + done({ status: 1, message: error.toString() }) } } )