Skip to content

Instantly share code, notes, and snippets.

@iambryancs
Created December 9, 2016 16:57
Show Gist options
  • Save iambryancs/7ea66cacffbb7eb47ba006515cb35c70 to your computer and use it in GitHub Desktop.
Save iambryancs/7ea66cacffbb7eb47ba006515cb35c70 to your computer and use it in GitHub Desktop.
Sample test.js
var request = require('supertest');
var app = require('../app.js');
describe('GET /', function() {
it('respond with hello world', function(done) {
request(app).get('/').expect('Hello World!', done);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment