2 var app
= require('../../examples/hello-world')
3 var request
= require('supertest')
5 describe('hello-world', function () {
6 describe('GET /', function () {
7 it('should respond with hello world', function (done
) {
10 .expect(200, 'Hello World', done
)
14 describe('GET /missing', function () {
15 it('should respond with 404', function (done
) {