Skip to content

Instantly share code, notes, and snippets.

@crizstian
Last active February 11, 2017 04:59
Show Gist options
  • Save crizstian/8659d2989fabe3d2c1219ab0568d1136 to your computer and use it in GitHub Desktop.
Save crizstian/8659d2989fabe3d2c1219ab0568d1136 to your computer and use it in GitHub Desktop.
Example of an integration test
/* eslint-env mocha */
const supertest = require('supertest')
describe('movies-service', () => {
const api = supertest('http://192.168.99.100:3000')
it('returns a 200 for a collection of movies', (done) => {
api.get('/movies/premiers')
.expect(200, done)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment