Skip to content

Commit

Permalink
#1151 update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sosnovsky committed Dec 8, 2021
1 parent b557040 commit 80cbe20
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion FlowCryptUI/Nodes/ComposeButtonNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public final class ComposeButtonNode: ASButtonNode {
onTap = action
backgroundColor = .main
accessibilityIdentifier = "composeMessageButton"
setTitle("+", with: UIFont.boldSystemFont(ofSize: 30), with: .white, for: .normal)
setTitle("+", with: .boldSystemFont(ofSize: 30), with: .white, for: .normal)
addTarget(self, action: #selector(onButtonTap), forControlEvents: .touchUpInside)
}

Expand Down
4 changes: 2 additions & 2 deletions appium/config/wdio.shared.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ exports.config = {

runner: 'local',
framework: 'jasmine',
jasmineNodeOpts: {
jasmineOpts: {
defaultTimeoutInterval: 600000,
requires: ['ts-node/register', 'tsconfig-paths/register']
requires: ['tsconfig-paths/register']
},
sync: true,
logLevel: 'silent',
Expand Down
24 changes: 11 additions & 13 deletions appium/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"main": "index.js",
"scripts": {
"test.live.all": "./node_modules/.bin/wdio ./config/wdio.live.conf.js --suite all",
"test.live": "./node_modules/.bin/wdio ./config/wdio.live.conf.js --suite all --jasmineNodeOpts.grep",
"test.live": "./node_modules/.bin/wdio ./config/wdio.live.conf.js --suite all --jasmineOpts.grep",
"test.mock.all": "./node_modules/.bin/wdio ./config/wdio.mock.conf.js --suite all",
"test.mock": "./node_modules/.bin/wdio ./config/wdio.mock.conf.js --suite all --jasmineNodeOpts.grep",
"test.mock": "./node_modules/.bin/wdio ./config/wdio.mock.conf.js --suite all --jasmineOpts.grep",
"test": "npm run-script build.app && npm run-script only.test.all",
"lint": "cd .. && ./appium/node_modules/.bin/eslint appium/ --ext .ts"
},
Expand All @@ -25,20 +25,18 @@
"@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-config-standard": "^16.0.3",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-wdio": "^7.4.2",
"mailparser": "3.4.0",
"node-fetch": "^3.1.0",
Expand All @@ -49,6 +47,6 @@
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"wdio-video-reporter": "^3.1.3",
"webdriverio": "7.16.4"
"webdriverio": "7.16.10"
}
}

0 comments on commit 80cbe20

Please sign in to comment.