22 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
 | |
| var app = require('../../examples/hello-world')
 | |
| var request = require('supertest')
 | |
| 
 | |
| describe('hello-world', function () {
 | |
|   describe('GET /', function () {
 | |
|     it('should respond with hello world', function (done) {
 | |
|       request(app)
 | |
|         .get('/')
 | |
|         .expect(200, 'Hello World', done)
 | |
|     })
 | |
|   })
 | |
| 
 | |
|   describe('GET /missing', function () {
 | |
|     it('should respond with 404', function (done) {
 | |
|       request(app)
 | |
|         .get('/missing')
 | |
|         .expect(404, done)
 | |
|     })
 | |
|   })
 | |
| })
 |