Skip to content

Instantly share code, notes, and snippets.

@mhayashi
Created December 26, 2010 07:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mhayashi/755281 to your computer and use it in GitHub Desktop.
Fix express app's test
// Run $ expresso
/**
* Module dependencies.
*/
var assert = require('assert'); // <-- assert を require する
var app = require('../app');
module.exports = {
'GET /': function(){ // <-- 引数の assert を消す
assert.response(app,
{ url: '/' },
{ status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' }},
function(res){
assert.includes(res.body, '<title>Express</title>');
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment