-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
/
Copy pathres.type.js
46 lines (36 loc) · 1.09 KB
/
res.type.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'use strict'
var express = require('../')
, request = require('supertest');
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('/')
.expect('Content-Type', 'text/javascript; charset=utf-8')
.end(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('/')
.expect('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('/')
.expect('Content-Type', 'application/vnd.amazon.ebook', done);
})
})
})