├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── app ├── index.js └── templates │ ├── _Nightwatch.js │ ├── _editorconfig │ ├── _eslintignore │ ├── _eslintrc │ ├── _gitignore │ ├── _globals.json │ ├── _package.json │ ├── pages │ ├── homepage.js │ └── search_results.js │ ├── results │ └── screenshots │ │ └── .gitkeep │ └── tests │ ├── home.js │ └── search.js ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_Nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/_Nightwatch.js -------------------------------------------------------------------------------- /app/templates/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/_editorconfig -------------------------------------------------------------------------------- /app/templates/_eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | Nightwatch.js 3 | -------------------------------------------------------------------------------- /app/templates/_eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/_eslintrc -------------------------------------------------------------------------------- /app/templates/_gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | coverage 4 | doc 5 | node_modules 6 | results 7 | logs 8 | -------------------------------------------------------------------------------- /app/templates/_globals.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test" 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/pages/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/pages/homepage.js -------------------------------------------------------------------------------- /app/templates/pages/search_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/pages/search_results.js -------------------------------------------------------------------------------- /app/templates/results/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/tests/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/tests/home.js -------------------------------------------------------------------------------- /app/templates/tests/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/app/templates/tests/search.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethmcl/generator-selenium-nightwatch/HEAD/test/test-load.js --------------------------------------------------------------------------------