Skip to content

Commit d9623f5

Browse files
authored
hotfix: missing joi package (#4209)
* hotfix: missing joi package * fix: specify browser version * fix: specify browser version
1 parent 1b6b950 commit d9623f5

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 3.5.14
2+
3+
❤️ Thanks all to those who contributed to make this release! ❤️
4+
5+
🐛 *Bug Fixes*
6+
* **Hotfix** Fixed missing `joi` package - by @KobeNguyenT
7+
18
## 3.5.13
29

310
❤️ Thanks all to those who contributed to make this release! ❤️

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeceptjs",
3-
"version": "3.5.13",
3+
"version": "3.5.14",
44
"description": "Supercharged End 2 End Testing Framework for NodeJS",
55
"keywords": [
66
"acceptance",
@@ -97,6 +97,7 @@
9797
"glob": "6.0.1",
9898
"html-minifier-terser": "7.2.0",
9999
"inquirer": "6.5.2",
100+
"joi": "17.12.1",
100101
"js-beautify": "1.14.11",
101102
"lodash.clonedeep": "4.5.0",
102103
"lodash.merge": "4.6.2",
@@ -171,4 +172,4 @@
171172
"npm": ">=5.6.0"
172173
},
173174
"es6": true
174-
}
175+
}

test/helper/WebDriver.noSeleniumServer_test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ global.codeceptjs = require('../../lib');
1515

1616
const siteUrl = TestHelper.siteUrl();
1717
let wd;
18-
18+
const browserVersion = '116.0.5793.0';
1919
describe('WebDriver - No Selenium server started', function () {
2020
this.retries(1);
2121
this.timeout(35000);
@@ -34,6 +34,7 @@ describe('WebDriver - No Selenium server started', function () {
3434
windowSize: '500x700',
3535
smartWait: 0, // just to try
3636
waitForTimeout: 5000,
37+
browserVersion,
3738
capabilities: {
3839
chromeOptions: {
3940
args: ['--headless', '--disable-gpu', '--window-size=1280,1024'],
@@ -1220,6 +1221,7 @@ describe('WebDriver - Basic Authentication', () => {
12201221
basicAuth: { username: 'admin', password: 'admin' },
12211222
browser: 'chrome',
12221223
windowSize: '500x700',
1224+
browserVersion,
12231225
remoteFileUpload: true,
12241226
smartWait: 0, // just to try
12251227
waitForTimeout: 5000,

0 commit comments

Comments
 (0)