Skip to content

Commit

Permalink
#1151 update appium package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sosnovsky committed Dec 2, 2021
1 parent bd498cd commit a9a6fef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion appium/config/wdio.shared.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports.config = {

runner: 'local',
framework: 'jasmine',
jasmineNodeOpts: {
jasmineOpts: {
defaultTimeoutInterval: 600000,
requires: ['ts-node/register', 'tsconfig-paths/register']
},
Expand Down
20 changes: 10 additions & 10 deletions appium/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"only.test.settings": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js --suite settings",
"only.test.all": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js --suite all",
"only.test.inbox": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js --suite inbox",
"only.test.filter": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js --suite all --jasmineNodeOpts.grep",
"only.test.filter": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js --suite all --jasmineOpts.grep",
"test": "npm run-script build.app && npm run-script only.test.all",
"build.app": "cd .. && bundle exec fastlane build",
"lint": "cd .. && ./appium/node_modules/.bin/eslint appium/ --ext .ts"
Expand All @@ -27,16 +27,16 @@
"@types/request": "^2.48.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@wdio/allure-reporter": "7.16.3",
"@wdio/appium-service": "7.16.4",
"@wdio/cli": "7.16.4",
"@wdio/jasmine-framework": "7.16.4",
"@wdio/local-runner": "6.10.13",
"@wdio/spec-reporter": "6.10.6",
"appium": "1.22.0",
"@wdio/allure-reporter": "7.16.10",
"@wdio/appium-service": "7.16.6",
"@wdio/cli": "7.16.10",
"@wdio/jasmine-framework": "7.16.6",
"@wdio/local-runner": "7.16.10",
"@wdio/spec-reporter": "7.16.9",
"appium": "1.22.1",
"babel-eslint": "^10.1.0",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
Expand All @@ -51,6 +51,6 @@
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"wdio-video-reporter": "^3.1.3",
"webdriverio": "7.16.4"
"webdriverio": "7.16.10"
}
}

4 comments on commit a9a6fef

@tomholub
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@tomholub
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see you actually downgraded eslint, maybe that was unintentional?

@sosnovsky
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was an issue with eslint-config-standard - it currently supports only eslint 7 (standard/eslint-config-standard#192), so npm install failed before downgrading eslint

@tomholub
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it

Please sign in to comment.