├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── README.md ├── app ├── index.html ├── js │ ├── app.js │ ├── controller.js │ ├── helpers.js │ ├── model.js │ ├── store.js │ ├── template.js │ └── view.js ├── readme.md └── test │ ├── ControllerSpec.js │ └── SpecRunner.html ├── package.json ├── test ├── codecept.json ├── fixtures │ └── todos.json ├── helpers │ └── environment_manager_helper.js ├── pages │ └── TodoList.js ├── support │ └── bootstrap.js └── tests │ ├── add_todo_test.js │ ├── edit_todo_test.js │ ├── filters_test.js │ ├── remove_todo_test.js │ └── state_togglers_test.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | node_modules 3 | vanillajs 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/controller.js -------------------------------------------------------------------------------- /app/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/helpers.js -------------------------------------------------------------------------------- /app/js/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/model.js -------------------------------------------------------------------------------- /app/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/store.js -------------------------------------------------------------------------------- /app/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/template.js -------------------------------------------------------------------------------- /app/js/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/js/view.js -------------------------------------------------------------------------------- /app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/readme.md -------------------------------------------------------------------------------- /app/test/ControllerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/test/ControllerSpec.js -------------------------------------------------------------------------------- /app/test/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/app/test/SpecRunner.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/package.json -------------------------------------------------------------------------------- /test/codecept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/codecept.json -------------------------------------------------------------------------------- /test/fixtures/todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/fixtures/todos.json -------------------------------------------------------------------------------- /test/helpers/environment_manager_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/helpers/environment_manager_helper.js -------------------------------------------------------------------------------- /test/pages/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/pages/TodoList.js -------------------------------------------------------------------------------- /test/support/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/support/bootstrap.js -------------------------------------------------------------------------------- /test/tests/add_todo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/tests/add_todo_test.js -------------------------------------------------------------------------------- /test/tests/edit_todo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/tests/edit_todo_test.js -------------------------------------------------------------------------------- /test/tests/filters_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/tests/filters_test.js -------------------------------------------------------------------------------- /test/tests/remove_todo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/tests/remove_todo_test.js -------------------------------------------------------------------------------- /test/tests/state_togglers_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/test/tests/state_togglers_test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jploskonka/testing-with-codeceptjs/HEAD/yarn.lock --------------------------------------------------------------------------------