repo.or.cz
/
express.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
remove examples from the ignore
[express.git]
/
test
/
app.listen.js
blob
5b150063b9eed8562862e5d3e5adf842b62b4ee4
1
'use strict'
2
3
var express = require('../')
4
5
describe('app.listen()', function(){
6
it('should wrap with an HTTP server', function(done){
7
var app = express();
8
9
var server = app.listen(0, function () {
10
server.close(done)
11
});
12
})
13
})