├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── bin └── cmd.js ├── lib ├── client.js ├── driver.js ├── options.js ├── plugin.js ├── request.js └── saucelabs.js ├── package.json └── test ├── fixtures ├── .min-wd ├── component-a │ ├── node_modules │ │ └── min-wd-config-foo │ │ │ ├── index.js │ │ │ └── package.json │ └── package.json ├── component-b │ ├── node_modules │ │ └── min-wd-config-foo │ │ │ ├── index.js │ │ │ └── package.json │ └── package.json ├── component-c │ ├── node_modules │ │ └── min-wd-config-foo │ │ │ ├── index.js │ │ │ └── package.json │ └── package.json ├── component-d │ ├── .min-wd │ ├── node_modules │ │ └── min-wd-config-foo │ │ │ └── package.json │ └── package.json ├── component-e │ ├── .min-wd │ ├── node_modules │ │ └── min-wd-config-foo │ │ │ └── package.json │ └── package.json └── options.js └── options-test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/driver.js -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/options.js -------------------------------------------------------------------------------- /lib/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/plugin.js -------------------------------------------------------------------------------- /lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/request.js -------------------------------------------------------------------------------- /lib/saucelabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/lib/saucelabs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/.min-wd: -------------------------------------------------------------------------------- 1 | { 2 | "hostname": "my.local" 3 | } -------------------------------------------------------------------------------- /test/fixtures/component-a/node_modules/min-wd-config-foo/index.js: -------------------------------------------------------------------------------- 1 | // make resolve happy -------------------------------------------------------------------------------- /test/fixtures/component-a/node_modules/min-wd-config-foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-a/node_modules/min-wd-config-foo/package.json -------------------------------------------------------------------------------- /test/fixtures/component-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-a/package.json -------------------------------------------------------------------------------- /test/fixtures/component-b/node_modules/min-wd-config-foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-b/node_modules/min-wd-config-foo/index.js -------------------------------------------------------------------------------- /test/fixtures/component-b/node_modules/min-wd-config-foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-b/node_modules/min-wd-config-foo/package.json -------------------------------------------------------------------------------- /test/fixtures/component-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-b/package.json -------------------------------------------------------------------------------- /test/fixtures/component-c/node_modules/min-wd-config-foo/index.js: -------------------------------------------------------------------------------- 1 | // make resolve happy -------------------------------------------------------------------------------- /test/fixtures/component-c/node_modules/min-wd-config-foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-c/node_modules/min-wd-config-foo/package.json -------------------------------------------------------------------------------- /test/fixtures/component-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-c/package.json -------------------------------------------------------------------------------- /test/fixtures/component-d/.min-wd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-d/.min-wd -------------------------------------------------------------------------------- /test/fixtures/component-d/node_modules/min-wd-config-foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-d/node_modules/min-wd-config-foo/package.json -------------------------------------------------------------------------------- /test/fixtures/component-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-d/package.json -------------------------------------------------------------------------------- /test/fixtures/component-e/.min-wd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-e/.min-wd -------------------------------------------------------------------------------- /test/fixtures/component-e/node_modules/min-wd-config-foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-e/node_modules/min-wd-config-foo/package.json -------------------------------------------------------------------------------- /test/fixtures/component-e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/fixtures/component-e/package.json -------------------------------------------------------------------------------- /test/fixtures/options.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | hostname: 'my.local', 5 | }; -------------------------------------------------------------------------------- /test/options-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantoni/min-webdriver/HEAD/test/options-test.js --------------------------------------------------------------------------------