├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── README.md ├── app.js ├── handlers └── products.js ├── lib └── schemas.js ├── package.json ├── routes └── products.js ├── test ├── functional │ └── products.js └── unit │ └── products.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/app.js -------------------------------------------------------------------------------- /handlers/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/handlers/products.js -------------------------------------------------------------------------------- /lib/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/lib/schemas.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/package.json -------------------------------------------------------------------------------- /routes/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/routes/products.js -------------------------------------------------------------------------------- /test/functional/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/test/functional/products.js -------------------------------------------------------------------------------- /test/unit/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/test/unit/products.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashariger/testing-hapi/HEAD/yarn.lock --------------------------------------------------------------------------------