express-testing-mocha-knex
express-testing-mocha-knex copied to clipboard
testing an express app
Testing Node and Express
Want to learn how to build this project?
Check out the blog post.
Want to use this project?
- Fork/Clone
- Install dependencies -
npm install
- Add a .env file
- Create two local Postgres databases -
express_tdd
andexpress_tdd_testing
- Migrate -
knex migrate:latest --env development
- Seed -
knex seed:run --env development
- Run the development server -
gulp
- Test -
npm test