├── .gitignore ├── LICENSE ├── README.md ├── app ├── index.html ├── main.js └── styles │ └── main.css ├── bower.json ├── gulpfile.js ├── history.txt ├── karma.conf.js ├── package.json ├── server.js └── test ├── e2e └── app.spec.js ├── index.html ├── main.spec.js └── protractor.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | test/coverage -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/app/index.html -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/app/main.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/gulpfile.js -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/history.txt -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/server.js -------------------------------------------------------------------------------- /test/e2e/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/test/e2e/app.spec.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/test/index.html -------------------------------------------------------------------------------- /test/main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/test/main.spec.js -------------------------------------------------------------------------------- /test/protractor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/angularjs-for-test-driven-development/HEAD/test/protractor.config.js --------------------------------------------------------------------------------