Skip to content

Commit cc395bd

Browse files
committed
follow naming convention
1 parent 21f0653 commit cc395bd

File tree

24 files changed

+29
-29
lines changed

24 files changed

+29
-29
lines changed

android/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"readme": "WendriverIO Integration with [BrowserStack](https://www.browserstack.com)",
55
"description": "Selenium examples for WebdriverIO and BrowserStack App Automate",
66
"scripts": {
7-
"test": "npm run single && npm run local && npm run parallel",
8-
"first": "./node_modules/.bin/wdio run_first_test/first.conf.js",
9-
"parallel": "./node_modules/.bin/wdio run_parallel_test/parallel.conf.js",
10-
"local": "./node_modules/.bin/wdio run_local_test/local.conf.js",
11-
"multiple": "./node_modules/.bin/wdio run_multiple_test/multiple.conf.js"
7+
"test": "npm run first && npm run local && npm run parallel",
8+
"first": "./node_modules/.bin/wdio run-first-test/first.conf.js",
9+
"parallel": "./node_modules/.bin/wdio run-parallel-test/parallel.conf.js",
10+
"local": "./node_modules/.bin/wdio run-local-test/local.conf.js",
11+
"multiple": "./node_modules/.bin/wdio run-multiple-test/multiple.conf.js"
1212
},
1313
"repository": {
1414
"type": "git",

android/run_first_test/first.conf.js renamed to android/run-first-test/first.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
exports.config = {
22
user: process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME',
3-
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACC_KEY',
3+
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY',
44

55
updateJob: false,
66
specs: [
7-
'./run_first_test/specs/first_test.js'
7+
'./run-first-test/specs/first_test.js'
88
],
99
exclude: [],
1010

android/run_local_test/local.conf.js renamed to android/run-local-test/local.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ var browserstack = require('browserstack-local');
22

33
exports.config = {
44
user: process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME',
5-
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACC_KEY',
5+
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY',
66

77
updateJob: false,
88
specs: [
9-
'./run_local_test/specs/local_test.js'
9+
'./run-local-test/specs/local_test.js'
1010
],
1111
exclude: [],
1212

android/run_multiple_test/multiple.conf.js renamed to android/run-multiple-test/multiple.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
exports.config = {
22
user: process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME',
3-
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACC_KEY',
3+
key: process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY',
44

55
updateJob: false,
66
specs: [
7-
'./run_multiple_test/specs/multiple_test.js'
7+
'./run-multiple-test/specs/multiple_test.js'
88
],
99
exclude: [],
1010

0 commit comments

Comments
 (0)