From 775b7d352bfb8a1b88bce6f554090c44e5dfe336 Mon Sep 17 00:00:00 2001 From: scoen Date: Fri, 1 Jul 2022 11:13:16 +0200 Subject: [PATCH] fix: remove typo from error handling --- 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() }) } } )