├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nvmrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── changelog.md ├── docker-compose.yml ├── package.json ├── readme.md └── test ├── config ├── prod.conf.js ├── suite.conf.js └── suite.sauce.conf.js ├── features └── googleSearch.feature └── support ├── pages ├── example.page.js └── page.js └── stepDefinitions ├── given.js ├── then.js └── when.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ['es2015'] 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 5.3 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/changelog.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/readme.md -------------------------------------------------------------------------------- /test/config/prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/config/prod.conf.js -------------------------------------------------------------------------------- /test/config/suite.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/config/suite.conf.js -------------------------------------------------------------------------------- /test/config/suite.sauce.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/config/suite.sauce.conf.js -------------------------------------------------------------------------------- /test/features/googleSearch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/features/googleSearch.feature -------------------------------------------------------------------------------- /test/support/pages/example.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/support/pages/example.page.js -------------------------------------------------------------------------------- /test/support/pages/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/support/pages/page.js -------------------------------------------------------------------------------- /test/support/stepDefinitions/given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/support/stepDefinitions/given.js -------------------------------------------------------------------------------- /test/support/stepDefinitions/then.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/support/stepDefinitions/then.js -------------------------------------------------------------------------------- /test/support/stepDefinitions/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcypherthis/wdio-boilerplate-cucumber/HEAD/test/support/stepDefinitions/when.js --------------------------------------------------------------------------------