Skip to content

Commit c7c2072

Browse files
committed
compatibility fixes
1 parent 7a84a37 commit c7c2072

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
44
tasks:
5-
- init: npm install --save-dev jest && npm install
5+
- init: npm install --save-dev jest --force && npm install
66
command: npm test ./test/single.test.js

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install npm@latest -g
2525
```
2626
**3.** Next, you need to **install Jest**. Run the below command to install Jest:
2727
```
28-
$ npm install --save-dev jest
28+
$ npm install --save-dev jest --force
2929
```
3030
**4. LambdaTest Authentication Credentials**: Make sure you have your LambdaTest credentials with you to run test automation scripts with Jest on LambdaTest Selenium Grid. You can obtain these credentials from the [LambdaTest Automation Dashboard](https://automation.lambdatest.com/) or through [LambdaTest Profile](https://accounts.lambdatest.com/detail/profile).
3131

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@
1616
"license": "MIT",
1717
"devDependencies": {
1818
"babel-eslint": "^10.0.1",
19-
"babel-jest": "^24.8.0",
19+
"babel-jest": "^27.2.5",
2020
"babel-plugin-external-helpers": "^6.22.0",
2121
"babel-plugin-transform-object-rest-spread": "^6.26.0",
2222
"babel-preset-env": "^1.7.0",
2323
"chromedriver": "^74.0.0",
24-
"eslint": "^5.16.0",
25-
"eslint-config-airbnb-base": "^13.1.0",
24+
"eslint": "^8.0.0",
25+
"eslint-config-airbnb-base": "^14.2.1",
2626
"eslint-config-prettier": "^4.3.0",
2727
"eslint-plugin-import": "^2.17.3",
2828
"eslint-plugin-jest": "^22.6.4",
2929
"eslint-plugin-prettier": "^3.1.0",
3030
"jasmin": "0.0.2",
3131
"jasmine": "^3.4.0",
32-
"jest": "^24.9.0",
32+
"jest": "^27.2.5",
3333
"jest-environment-webdriver": "^0.2.0",
3434
"jsdom": "^15.1.1",
3535
"prettier": "^1.17.1",

0 commit comments

Comments
 (0)