From 19a9ef76e501a037df25359f28e8cdb10292e6d2 Mon Sep 17 00:00:00 2001 From: Jonathan Ong Date: Mon, 4 Aug 2014 13:28:26 -0700 Subject: [PATCH] fix test for new mime-types --- test/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/application.js b/test/application.js index 5215d9a..3c4d35c 100644 --- a/test/application.js +++ b/test/application.js @@ -266,7 +266,7 @@ describe('app.respond', function(){ request(server) .head('/') - .expect('content-type', 'application/javascript') + .expect('content-type', /application\/javascript/) .expect(200, done); }) })