├── .gitignore ├── .mocharc.js ├── README.md ├── config └── index.js ├── package.json ├── test ├── produtos │ ├── post.test.js │ └── put.test.js └── usuarios │ ├── delete.test.js │ ├── get.test.js │ └── post.test.js └── utils ├── global.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | report/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/.mocharc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/README.md -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/config/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/package.json -------------------------------------------------------------------------------- /test/produtos/post.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/test/produtos/post.test.js -------------------------------------------------------------------------------- /test/produtos/put.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/test/produtos/put.test.js -------------------------------------------------------------------------------- /test/usuarios/delete.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/test/usuarios/delete.test.js -------------------------------------------------------------------------------- /test/usuarios/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/test/usuarios/get.test.js -------------------------------------------------------------------------------- /test/usuarios/post.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/test/usuarios/post.test.js -------------------------------------------------------------------------------- /utils/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/utils/global.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bora-QA/curso-api-com-supertest/HEAD/utils/index.js --------------------------------------------------------------------------------