remove examples from the ignore
[express.git] / test / app.listen.js
blob5b150063b9eed8562862e5d3e5adf842b62b4ee4
1 'use strict'
3 var express = require('../')
5 describe('app.listen()', function(){
6   it('should wrap with an HTTP server', function(done){
7     var app = express();
9     var server = app.listen(0, function () {
10       server.close(done)
11     });
12   })