diff --git a/test/automation/src/playwrightDriver.ts b/test/automation/src/playwrightDriver.ts index 2b1d3a6ae40..a6fd72754f9 100644 --- a/test/automation/src/playwrightDriver.ts +++ b/test/automation/src/playwrightDriver.ts @@ -198,7 +198,7 @@ export class PlaywrightDriver { try { await measureAndLog(() => this.application.close(), 'playwright.close()', this.options.logger); } catch (error) { - this.options.logger.log(`Error closing appliction (${error})`); + this.options.logger.log(`Error closing application (${error})`); } // Server: via `teardown` diff --git a/test/unit/browser/index.js b/test/unit/browser/index.js index 139fba95514..e5cf68ccab5 100644 --- a/test/unit/browser/index.js +++ b/test/unit/browser/index.js @@ -151,7 +151,7 @@ const testModules = (async function () { modules.push(file.replace(/\.js$/, '')); } else if (!isDefaultModules) { - console.warn(`DROPPONG ${file} because it cannot be run inside a browser`); + console.warn(`DROPPING ${file} because it cannot be run inside a browser`); } } return modules; diff --git a/test/unit/electron/renderer.js b/test/unit/electron/renderer.js index aa4f05984a2..661be873561 100644 --- a/test/unit/electron/renderer.js +++ b/test/unit/electron/renderer.js @@ -372,7 +372,7 @@ function safeStringify(obj) { function isObject(obj) { // The method can't do a type cast since there are type (like strings) which - // are subclasses of any put not positvely matched by the function. Hence type + // are subclasses of any put not positively matched by the function. Hence type // narrowing results in wrong results. return typeof obj === 'object' && obj !== null