mirror of
https://github.com/zebrajr/express.git
synced 2026-01-15 12:15:27 +00:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
|
|
var express = require('../')
|
|
, request = require('./support/http');
|
|
|
|
describe('res', function(){
|
|
describe('.type(str)', function(){
|
|
it('should set the Content-Type based on a filename', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.type('foo.js').end('var name = "tj";');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.end(function(res){
|
|
res.headers.should.have.property('content-type', 'application/javascript');
|
|
done();
|
|
})
|
|
})
|
|
|
|
it('should default to application/octet-stream', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.type('rawr').end('var name = "tj";');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.end(function(res){
|
|
res.headers.should.have.property('content-type', 'application/octet-stream');
|
|
done();
|
|
})
|
|
})
|
|
|
|
it('should set the Content-Type with type/subtype', function(done){
|
|
var app = express();
|
|
|
|
app.use(function(req, res){
|
|
res.type('application/vnd.amazon.ebook')
|
|
.end('var name = "tj";');
|
|
});
|
|
|
|
request(app)
|
|
.get('/')
|
|
.end(function(res){
|
|
res.headers.should.have.property('content-type', 'application/vnd.amazon.ebook');
|
|
done();
|
|
})
|
|
})
|
|
})
|
|
})
|