diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2d347c4..3b84f4506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 3.5.14 + +❤️ Thanks all to those who contributed to make this release! ❤️ + +🐛 *Bug Fixes* +* **Hotfix** Fixed missing `joi` package - by @KobeNguyenT + ## 3.5.13 ❤️ Thanks all to those who contributed to make this release! ❤️ diff --git a/package.json b/package.json index e589dee05..f0369d476 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeceptjs", - "version": "3.5.13", + "version": "3.5.14", "description": "Supercharged End 2 End Testing Framework for NodeJS", "keywords": [ "acceptance", @@ -97,6 +97,7 @@ "glob": "6.0.1", "html-minifier-terser": "7.2.0", "inquirer": "6.5.2", + "joi": "17.12.1", "js-beautify": "1.14.11", "lodash.clonedeep": "4.5.0", "lodash.merge": "4.6.2", @@ -171,4 +172,4 @@ "npm": ">=5.6.0" }, "es6": true -} \ No newline at end of file +} diff --git a/test/helper/WebDriver.noSeleniumServer_test.js b/test/helper/WebDriver.noSeleniumServer_test.js index 6182f3f55..8e05ee844 100644 --- a/test/helper/WebDriver.noSeleniumServer_test.js +++ b/test/helper/WebDriver.noSeleniumServer_test.js @@ -15,7 +15,7 @@ global.codeceptjs = require('../../lib'); const siteUrl = TestHelper.siteUrl(); let wd; - +const browserVersion = '116.0.5793.0'; describe('WebDriver - No Selenium server started', function () { this.retries(1); this.timeout(35000); @@ -34,6 +34,7 @@ describe('WebDriver - No Selenium server started', function () { windowSize: '500x700', smartWait: 0, // just to try waitForTimeout: 5000, + browserVersion, capabilities: { chromeOptions: { args: ['--headless', '--disable-gpu', '--window-size=1280,1024'], @@ -1220,6 +1221,7 @@ describe('WebDriver - Basic Authentication', () => { basicAuth: { username: 'admin', password: 'admin' }, browser: 'chrome', windowSize: '500x700', + browserVersion, remoteFileUpload: true, smartWait: 0, // just to try waitForTimeout: 5000,